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

closes #3574
pull/1/head
Calvin Hu 10 years ago committed by Moxie Marlinspike
parent 6c20a4c08b
commit 149ac9f417

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

Loading…
Cancel
Save