mirror of
https://github.com/moparisthebest/k-9
synced 2025-02-17 07:30:16 -05:00
Fix "up" logic in MessageList
Fixes issue 4727
This commit is contained in:
parent
26b462a90e
commit
b4bd80baa2
@ -367,8 +367,10 @@ public class MessageList extends K9FragmentActivity implements MessageListFragme
|
||||
FragmentManager fragmentManager = getSupportFragmentManager();
|
||||
if (fragmentManager.getBackStackEntryCount() > 0) {
|
||||
fragmentManager.popBackStack();
|
||||
} else if (!mSingleFolderMode || mMessageListFragment.isManualSearch()) {
|
||||
} else if (mMessageListFragment.isManualSearch()) {
|
||||
onBackPressed();
|
||||
} else if (!mSingleFolderMode) {
|
||||
onAccounts();
|
||||
} else {
|
||||
onShowFolderList();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user