Retain default overview mode

This commit is contained in:
M66B 2024-06-13 19:13:23 +02:00
parent 93f3b06a84
commit 1a1e967c01
1 changed files with 3 additions and 1 deletions

View File

@ -874,7 +874,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 (version < 2202) {
if (!prefs.contains("overview_mode"))
editor.putBoolean("overview_mode", false);
}