1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-27 10:17:18 +00:00

Sync trash / archive by default

Fixes #21
This commit is contained in:
M66B 2018-08-06 20:20:05 +00:00
parent 5ddf4fc994
commit e7a709b944
2 changed files with 5 additions and 3 deletions

View file

@ -84,9 +84,10 @@ public class EntityFolder {
static final int DEFAULT_STANDARD_SYNC = 7;
static final List<String> SYSTEM_FOLDER_SYNC = Arrays.asList(
EntityFolder.TYPE_ARCHIVE,
EntityFolder.TYPE_DRAFTS,
EntityFolder.TYPE_SENT
TYPE_ARCHIVE,
TYPE_DRAFTS,
TYPE_TRASH,
TYPE_SENT
);
static boolean isOutgoing(String type) {

View file

@ -175,6 +175,7 @@ public class FragmentIdentity extends FragmentEx {
});
// Initialize
etName.requestFocus();
tilPassword.setPasswordVisibilityToggleEnabled(id < 0);
pbCheck.setVisibility(View.GONE);