Disable double tap to read by default

This commit is contained in:
M66B
2022-08-18 07:48:51 +02:00
parent fb9874dc27
commit 99976b23b6
3 changed files with 5 additions and 2 deletions

View File

@@ -648,6 +648,9 @@ public class ApplicationEx extends Application
else if (version < 1951) {
if (prefs.contains("open_unsafe"))
editor.putBoolean("open_safe", !prefs.getBoolean("open_unsafe", true));
} else if (version < 1955) {
if (!prefs.contains("doubletap"))
editor.putBoolean("doubletap", true);
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O && !BuildConfig.DEBUG)