mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-24 02:12:15 -05:00
When instantiating an account, set the default color to something
random, rather than blank, so that new accounts don't endup without colors.
This commit is contained in:
parent
f799be05c9
commit
384803076d
@ -133,7 +133,7 @@ public class Account implements BaseAccount
|
||||
mExpungePolicy = EXPUNGE_IMMEDIATELY;
|
||||
mAutoExpandFolderName = "INBOX";
|
||||
mMaxPushFolders = 10;
|
||||
mChipColor = 0;
|
||||
mChipColor = (new Random()).nextInt(0xffffff) + 0xff000000;
|
||||
goToUnreadMessageSearch = false;
|
||||
|
||||
searchableFolders = Searchable.ALL;
|
||||
|
Loading…
Reference in New Issue
Block a user