mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 09:47:13 +00:00
Small behavior improvement
This commit is contained in:
parent
466f1a21f6
commit
8605906d4d
1 changed files with 2 additions and 0 deletions
|
@ -479,6 +479,7 @@ public class FragmentOptionsSynchronize extends FragmentBase implements SharedPr
|
|||
prefs.edit().putBoolean("check_blocklist", checked).apply();
|
||||
swUseBlocklist.setEnabled(checked);
|
||||
swUseBlocklistPop.setEnabled(checked);
|
||||
rvBlocklist.setAlpha(checked ? 1.0f : Helper.LOW_LIGHT);
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -613,6 +614,7 @@ public class FragmentOptionsSynchronize extends FragmentBase implements SharedPr
|
|||
swUseBlocklist.setEnabled(swCheckBlocklist.isChecked());
|
||||
swUseBlocklistPop.setChecked(prefs.getBoolean("use_blocklist_pop", false));
|
||||
swUseBlocklistPop.setEnabled(swCheckBlocklist.isChecked());
|
||||
rvBlocklist.setAlpha(swCheckBlocklist.isChecked() ? 1.0f : Helper.LOW_LIGHT);
|
||||
}
|
||||
|
||||
private String formatHour(Context context, int minutes) {
|
||||
|
|
Loading…
Reference in a new issue