diff --git a/src/com/fsck/k9/preferences/GlobalSettings.java b/src/com/fsck/k9/preferences/GlobalSettings.java index 490bb7bae..e8ed8a7b1 100644 --- a/src/com/fsck/k9/preferences/GlobalSettings.java +++ b/src/com/fsck/k9/preferences/GlobalSettings.java @@ -223,7 +223,7 @@ public class GlobalSettings { new V(25, new BooleanSetting(true)) )); s.put("autofitWidth", Settings.versions( - new V(27, new BooleanSetting(true)) + new V(28, 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 e52872f20..52e95bf27 100644 --- a/src/com/fsck/k9/preferences/Settings.java +++ b/src/com/fsck/k9/preferences/Settings.java @@ -35,7 +35,7 @@ public class Settings { * * @see SettingsExporter */ - public static final int VERSION = 27; + public static final int VERSION = 28; public static Map validate(int version, Map> settings,