when camera preview is open, the preview toggle button will close the preview

closes #3574
This commit is contained in:
Calvin Hu 2015-07-18 17:06:02 -04:00 committed by Moxie Marlinspike
parent 6c20a4c08b
commit 149ac9f417

View file

@ -1370,8 +1370,12 @@ public class ConversationActivity extends PassphraseRequiredActionBarActivity
private class QuickAttachmentToggleListener implements OnClickListener {
@Override
public void onClick(View v) {
composeText.clearFocus();
container.show(composeText, quickAttachmentDrawer);
if (!quickAttachmentDrawer.isShowing()) {
composeText.clearFocus();
container.show(composeText, quickAttachmentDrawer);
} else {
container.hideAttachedInput(false);
}
}
}