mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-02 13:14:39 +00:00
Fixed theme options logic
This commit is contained in:
parent
e968b49cba
commit
421de816c4
1 changed files with 2 additions and 2 deletions
|
@ -86,8 +86,8 @@ public class FragmentDialogTheme extends FragmentDialogBase {
|
|||
|
||||
swBlack.setEnabled(colored && !grey && !bw && !solarized && optionId != R.id.rbThemeLight);
|
||||
|
||||
swHtmlLight.setEnabled(!(colored || blank) || colored);
|
||||
swComposerLight.setEnabled(!(colored || blank) || colored);
|
||||
swHtmlLight.setEnabled(!(colored || blank) || (colored && optionId != R.id.rbThemeLight));
|
||||
swComposerLight.setEnabled(!(colored || blank) || (colored && optionId != R.id.rbThemeLight));
|
||||
}
|
||||
|
||||
@NonNull
|
||||
|
|
Loading…
Reference in a new issue