Browse Source

Fixed default store sent

main
M66B 5 years ago
parent
commit
a1b47592da
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/src/main/java/eu/faircode/email/FragmentAccount.java

+ 1
- 1
app/src/main/java/eu/faircode/email/FragmentAccount.java View File

@ -626,7 +626,7 @@ public class FragmentAccount extends FragmentEx {
tilPassword.getEditText().setText(account == null ? null : account.password);
cbSynchronize.setChecked(account == null ? true : account.synchronize);
cbPrimary.setChecked(account == null ? true : account.primary);
cbStoreSent.setChecked(account == null ? true : account.store_sent);
cbStoreSent.setChecked(account == null ? false : account.store_sent);
} else {
int provider = savedInstanceState.getInt("provider");
spProvider.setTag(provider);


Loading…
Cancel
Save