mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-23 14:41:08 +00:00
Default poll new folders
This commit is contained in:
parent
26881d20ca
commit
72e6bda760
1 changed files with 1 additions and 1 deletions
|
@ -276,7 +276,7 @@ public class FragmentFolder extends FragmentBase {
|
|||
cbNavigation.setChecked(folder == null ? false : folder.navigation);
|
||||
cbNotify.setChecked(folder == null ? false : folder.notify);
|
||||
cbSynchronize.setChecked(folder == null || folder.synchronize);
|
||||
cbPoll.setChecked(folder == null ? false : folder.poll);
|
||||
cbPoll.setChecked(folder == null ? true : folder.poll);
|
||||
etPoll.setText(folder == null ? null : Integer.toString(folder.poll_factor));
|
||||
tvPoll.setText(getString(R.string.title_factor_minutes, interval));
|
||||
cbDownload.setChecked(folder == null ? true : folder.download);
|
||||
|
|
Loading…
Reference in a new issue