diff --git a/src/com/fsck/k9/preferences/GlobalSettings.java b/src/com/fsck/k9/preferences/GlobalSettings.java index 5dcae70bb..96254d0d9 100644 --- a/src/com/fsck/k9/preferences/GlobalSettings.java +++ b/src/com/fsck/k9/preferences/GlobalSettings.java @@ -114,7 +114,8 @@ public class GlobalSettings { new V(1, new FontSizeSetting(FontSizes.FONT_12DIP)) )); s.put("gesturesEnabled", Settings.versions( - new V(1, new BooleanSetting(true)) + new V(1, new BooleanSetting(true)), + new V(4, new BooleanSetting(false)) )); s.put("hideSpecialAccounts", Settings.versions( new V(1, new BooleanSetting(false)) @@ -189,7 +190,8 @@ public class GlobalSettings { new V(1, new BooleanSetting(false)) )); s.put("zoomControlsEnabled", Settings.versions( - new V(1, new BooleanSetting(false)) + new V(1, new BooleanSetting(false)), + new V(4, new BooleanSetting(true)) )); SETTINGS = Collections.unmodifiableMap(s); diff --git a/src/com/fsck/k9/preferences/Settings.java b/src/com/fsck/k9/preferences/Settings.java index 207c63464..7cc1e701c 100644 --- a/src/com/fsck/k9/preferences/Settings.java +++ b/src/com/fsck/k9/preferences/Settings.java @@ -34,7 +34,7 @@ public class Settings { * * @see SettingsExporter */ - public static final int VERSION = 3; + public static final int VERSION = 4; public static Map validate(int version, Map> settings,