From 837b7da2067720519b9813017a62b5a0b85a5817 Mon Sep 17 00:00:00 2001 From: cketti Date: Thu, 5 May 2011 02:36:15 +0200 Subject: [PATCH] Changed order of pick directory intents --- src/com/fsck/k9/helper/FileBrowserHelper.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/com/fsck/k9/helper/FileBrowserHelper.java b/src/com/fsck/k9/helper/FileBrowserHelper.java index 3293a80d0..f5ea6c4f8 100644 --- a/src/com/fsck/k9/helper/FileBrowserHelper.java +++ b/src/com/fsck/k9/helper/FileBrowserHelper.java @@ -62,13 +62,13 @@ public class FileBrowserHelper { * */ public boolean showFileBrowserActivity(Activity c, File startPath, int requestcode, FileBrowserFailOverCallback callback) { - // A string array that specifies the name of the intent to use, and - // the scheme to use with it when setting the data for the intent. - String[][] intentDetails = - { { "org.openintents.action.PICK_DIRECTORY", "file://" }, // OI File Manager (maybe others) - { "com.androidworkz.action.PICK_DIRECTORY", "file://" }, // SystemExplorer - { "com.estrongs.action.PICK_DIRECTORY", "file://" }, // ES File Explorer - { Intent.ACTION_PICK, "folder://" } }; // Blackmoon File Browser (maybe others) + // A string array that specifies the name of the intent to use, and + // the scheme to use with it when setting the data for the intent. + String[][] intentDetails = + { { "org.openintents.action.PICK_DIRECTORY", "file://" }, // OI File Manager (maybe others) + { "com.estrongs.action.PICK_DIRECTORY", "file://" }, // ES File Explorer + { Intent.ACTION_PICK, "folder://" }, // Blackmoon File Browser (maybe others) + { "com.androidworkz.action.PICK_DIRECTORY", "file://" }}; // SystemExplorer boolean success = false;