Enabled overview mode by default for new installs

This commit is contained in:
M66B
2024-06-05 19:01:22 +02:00
parent 4978490229
commit 1a4de41dee
6 changed files with 12 additions and 9 deletions

View File

@@ -873,6 +873,9 @@ public class ApplicationEx extends Application
} else if (version < 2196) {
if (!prefs.contains("forward_new"))
editor.putBoolean("forward_new", true);
} else if (version < 2197) {
if (!prefs.contains("overview_mode"))
editor.putBoolean("overview_mode", false);
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O && !BuildConfig.DEBUG)