Disable double back by default

This commit is contained in:
M66B
2021-03-25 17:08:25 +01:00
parent 9dfa47452c
commit 20030f9ff3
3 changed files with 5 additions and 2 deletions

View File

@@ -461,6 +461,9 @@ public class ApplicationEx extends Application
} else if (version < 1535) {
editor.remove("identities_asked");
editor.remove("identities_primary_hint");
} else if (version < 1539) {
if (!prefs.contains("double_back"))
editor.putBoolean("double_back", true);
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O && !BuildConfig.DEBUG)