mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-01 17:26:12 +00:00
Fixed background of black theme
This commit is contained in:
parent
c23755c9f5
commit
efb3b41c6d
1 changed files with 1 additions and 1 deletions
|
@ -647,7 +647,7 @@ public class FragmentDialogTheme extends FragmentDialogBase {
|
||||||
boolean tabular_card_bg = prefs.getBoolean("tabular_card_bg", false);
|
boolean tabular_card_bg = prefs.getBoolean("tabular_card_bg", false);
|
||||||
String theme = prefs.getString("theme", "blue_orange_system");
|
String theme = prefs.getString("theme", "blue_orange_system");
|
||||||
boolean dark = Helper.isDarkTheme(context);
|
boolean dark = Helper.isDarkTheme(context);
|
||||||
boolean black = ((!"black".equals(theme) && theme.endsWith("black")) || "black_and_white".equals(theme));
|
boolean black = (theme.endsWith("black") || "black_and_white".equals(theme));
|
||||||
boolean solarized = theme.startsWith("solarized");
|
boolean solarized = theme.startsWith("solarized");
|
||||||
boolean you = theme.startsWith("you_");
|
boolean you = theme.startsWith("you_");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue