From 64762813797a48388217b0fecf90d6651bf0c47f Mon Sep 17 00:00:00 2001 From: Daniel Applebaum Date: Tue, 8 Jun 2010 23:26:48 +0000 Subject: [PATCH] Fixes Issue 1411 Only automatically finish the FolderList Activity when actively managing the back button. --- src/com/fsck/k9/activity/FolderList.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/com/fsck/k9/activity/FolderList.java b/src/com/fsck/k9/activity/FolderList.java index 4798b88c0..cdad82128 100644 --- a/src/com/fsck/k9/activity/FolderList.java +++ b/src/com/fsck/k9/activity/FolderList.java @@ -566,7 +566,10 @@ public class FolderList extends K9ListActivity private void onOpenFolder(String folder) { MessageList.actionHandleFolder(this, mAccount, folder); - finish(); + if (K9.manageBack()) + { + finish(); + } } private void onCompact(Account account)