Upgrade: disabled text styles when monospaced enabled

pull/183/head
M66B 5 years ago
parent 9b861418f2
commit 4b96f6830f

@ -280,6 +280,11 @@ public class ApplicationEx extends Application {
editor.remove("background_service");
} else if (version < 1195)
editor.remove("auto_optimize");
else if (version < 1229) {
boolean monospaced = prefs.getBoolean("monospaced", false);
if (monospaced && !BuildConfig.DEBUG)
editor.putBoolean("text_font", false);
}
if (version < BuildConfig.VERSION_CODE)
editor.putInt("previous_version", version);

Loading…
Cancel
Save