mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-29 09:01:30 +01:00
Sort folders on display name
This commit is contained in:
@@ -235,8 +235,13 @@ public class EntityFolder extends EntityOrder implements Serializable {
|
||||
}
|
||||
|
||||
@Override
|
||||
String getSortTitle(Context context) {
|
||||
return Helper.localizeFolderName(context, name);
|
||||
String getSortKey(Context context) {
|
||||
return getDisplayName(context);
|
||||
}
|
||||
|
||||
@Override
|
||||
String[] getSortTitle(Context context) {
|
||||
return new String[]{getDisplayName(context), null};
|
||||
}
|
||||
|
||||
boolean isOutgoing() {
|
||||
|
||||
Reference in New Issue
Block a user