Disable auto scroll by default

This commit is contained in:
M66B
2021-01-20 14:03:14 +01:00
parent 12f70ec8ef
commit 90009955c5
3 changed files with 5 additions and 2 deletions

View File

@@ -401,6 +401,9 @@ public class ApplicationEx extends Application
} else if (version < 1461) {
if (!prefs.contains("theme"))
editor.putString("theme", "blue_orange_light");
} else if (version < 1463) {
if (!prefs.contains("autoscroll"))
editor.putBoolean("autoscroll", true);
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O && !BuildConfig.DEBUG)