mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-24 08:44:26 +00:00
Fixed default store sent
This commit is contained in:
parent
36d1fb5154
commit
a1b47592da
1 changed files with 1 additions and 1 deletions
|
@ -626,7 +626,7 @@ public class FragmentAccount extends FragmentEx {
|
||||||
tilPassword.getEditText().setText(account == null ? null : account.password);
|
tilPassword.getEditText().setText(account == null ? null : account.password);
|
||||||
cbSynchronize.setChecked(account == null ? true : account.synchronize);
|
cbSynchronize.setChecked(account == null ? true : account.synchronize);
|
||||||
cbPrimary.setChecked(account == null ? true : account.primary);
|
cbPrimary.setChecked(account == null ? true : account.primary);
|
||||||
cbStoreSent.setChecked(account == null ? true : account.store_sent);
|
cbStoreSent.setChecked(account == null ? false : account.store_sent);
|
||||||
} else {
|
} else {
|
||||||
int provider = savedInstanceState.getInt("provider");
|
int provider = savedInstanceState.getInt("provider");
|
||||||
spProvider.setTag(provider);
|
spProvider.setTag(provider);
|
||||||
|
|
Loading…
Reference in a new issue