Avoid NullPointerException
Fixes issue 4557
This commit is contained in:
parent
8018be3e16
commit
ba0c530c7b
1 changed files with 3 additions and 1 deletions
|
@ -1791,7 +1791,9 @@ public class MessageCompose extends K9Activity implements OnClickListener, OnFoc
|
|||
private void onAddCcBcc() {
|
||||
mCcWrapper.setVisibility(View.VISIBLE);
|
||||
mBccWrapper.setVisibility(View.VISIBLE);
|
||||
mMenu.findItem(R.id.add_cc_bcc).setVisible(false);
|
||||
if (mMenu != null) {
|
||||
mMenu.findItem(R.id.add_cc_bcc).setVisible(false);
|
||||
}
|
||||
}
|
||||
|
||||
private void onReadReceipt() {
|
||||
|
|
Loading…
Reference in a new issue