1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-23 16:25:30 +00:00

Fixed default store sent

This commit is contained in:
M66B 2018-08-21 18:20:10 +00:00
parent 36d1fb5154
commit a1b47592da

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);