mirror of
https://github.com/moparisthebest/k-9
synced 2024-12-25 09:08:49 -05:00
Don't finish() MessageCompose in onPause()
This commit is contained in:
parent
bddacf6b64
commit
45faad041e
@ -864,12 +864,8 @@ public class MessageCompose extends K9Activity implements OnClickListener, OnFoc
|
|||||||
MessagingController.getInstance(getApplication()).removeListener(mListener);
|
MessagingController.getInstance(getApplication()).removeListener(mListener);
|
||||||
// Save email as draft when activity is changed (go to home screen, call received) or screen locked
|
// Save email as draft when activity is changed (go to home screen, call received) or screen locked
|
||||||
// don't do this if only changing orientations
|
// don't do this if only changing orientations
|
||||||
if ((getChangingConfigurations() & ActivityInfo.CONFIG_ORIENTATION) == 0) {
|
if (!mIgnoreOnStop && (getChangingConfigurations() & ActivityInfo.CONFIG_ORIENTATION) == 0) {
|
||||||
// don't do this if selecting signature or if "Encrypt" is checked or if adding an attachment
|
|
||||||
if (!mPreventDraftSaving && !mEncryptCheckbox.isChecked() && !mIgnoreOnStop){
|
|
||||||
saveIfNeeded();
|
saveIfNeeded();
|
||||||
finish();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user