Added grey light theme

This commit is contained in:
M66B
2019-09-09 09:31:55 +02:00
parent a262b2cbb0
commit 27258bae5e
6 changed files with 43 additions and 10 deletions

View File

@@ -130,9 +130,15 @@ public class ApplicationEx extends Application {
if (prefs.getBoolean("autonext", false))
editor.putString("onclose", "next");
editor.remove("autonext");
} else if (version < 693) {
editor.remove("message_swipe");
editor.remove("message_select");
} else if (version < 696) {
String theme = prefs.getString("theme", "light");
if ("grey".equals(theme))
editor.putString("theme", "grey_dark");
}
if (BuildConfig.DEBUG && false) {