1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Restore case-insensitive sort, but fall back on case sensitive, just

in case the case-insensitive version returns that the two folders are
equal during the insensitive comparison.
This commit is contained in:
Daniel Applebaum 2009-06-09 04:01:04 +00:00
parent 770032d960
commit 339c8e247b

View File

@ -1093,8 +1093,16 @@ public class FolderList extends K9ListActivity {
return -1;
} else if (Email.INBOX.equalsIgnoreCase(s2)) {
return 1;
} else
return s1.compareTo(s2);
} else {
int ret = s1.compareToIgnoreCase(s2);
if (ret != 0) {
return ret;
}
else {
return s1.compareTo(s2);
}
}
}
// constructor for an empty object for comparisons