mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-31 06:08:31 +02:00
Let child folders inherit parent folder properties
This commit is contained in:
@@ -81,7 +81,6 @@ public class FragmentOptionsSynchronize extends FragmentBase implements SharedPr
|
||||
private SwitchCompat swSyncFolders;
|
||||
private SwitchCompat swSyncSharedFolders;
|
||||
private SwitchCompat swSubscriptions;
|
||||
private SwitchCompat swSyncSubscribed;
|
||||
private SwitchCompat swCheckMx;
|
||||
private SwitchCompat swTuneKeepAlive;
|
||||
private Group grpExempted;
|
||||
@@ -91,7 +90,7 @@ public class FragmentOptionsSynchronize extends FragmentBase implements SharedPr
|
||||
private final static String[] RESET_OPTIONS = new String[]{
|
||||
"enabled", "poll_interval", "auto_optimize", "schedule", "schedule_start", "schedule_end",
|
||||
"sync_nodate", "sync_unseen", "sync_flagged", "delete_unseen", "sync_kept", "gmail_thread_id",
|
||||
"sync_folders", "sync_shared_folders", "subscriptions", "sync_subscribed",
|
||||
"sync_folders", "sync_shared_folders", "subscriptions",
|
||||
"check_mx", "tune_keep_alive"
|
||||
};
|
||||
|
||||
@@ -135,7 +134,6 @@ public class FragmentOptionsSynchronize extends FragmentBase implements SharedPr
|
||||
swSyncFolders = view.findViewById(R.id.swSyncFolders);
|
||||
swSyncSharedFolders = view.findViewById(R.id.swSyncSharedFolders);
|
||||
swSubscriptions = view.findViewById(R.id.swSubscriptions);
|
||||
swSyncSubscribed = view.findViewById(R.id.swSyncSubscribed);
|
||||
swCheckMx = view.findViewById(R.id.swCheckMx);
|
||||
swTuneKeepAlive = view.findViewById(R.id.swTuneKeepAlive);
|
||||
grpExempted = view.findViewById(R.id.grpExempted);
|
||||
@@ -308,14 +306,6 @@ public class FragmentOptionsSynchronize extends FragmentBase implements SharedPr
|
||||
@Override
|
||||
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
||||
prefs.edit().putBoolean("subscriptions", checked).apply();
|
||||
swSyncSubscribed.setEnabled(checked);
|
||||
}
|
||||
});
|
||||
|
||||
swSyncSubscribed.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
||||
@Override
|
||||
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
||||
prefs.edit().putBoolean("sync_subscribed", checked).apply();
|
||||
}
|
||||
});
|
||||
|
||||
@@ -419,8 +409,6 @@ public class FragmentOptionsSynchronize extends FragmentBase implements SharedPr
|
||||
swSyncSharedFolders.setChecked(prefs.getBoolean("sync_shared_folders", false));
|
||||
swSyncSharedFolders.setEnabled(swSyncFolders.isChecked());
|
||||
swSubscriptions.setChecked(prefs.getBoolean("subscriptions", false));
|
||||
swSyncSubscribed.setChecked(prefs.getBoolean("sync_subscribed", false));
|
||||
swSyncSubscribed.setEnabled(swSubscriptions.isChecked());
|
||||
swCheckMx.setChecked(prefs.getBoolean("check_mx", false));
|
||||
swTuneKeepAlive.setChecked(prefs.getBoolean("tune_keep_alive", true));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user