diff --git a/src/com/fsck/k9/preferences/GlobalSettings.java b/src/com/fsck/k9/preferences/GlobalSettings.java index fea82c57e..ac1f07450 100644 --- a/src/com/fsck/k9/preferences/GlobalSettings.java +++ b/src/com/fsck/k9/preferences/GlobalSettings.java @@ -241,6 +241,9 @@ public class GlobalSettings { s.put("fixedMessageViewTheme", Settings.versions( new V(24, new BooleanSetting(true)) )); + s.put("showContactPicture", Settings.versions( + new V(25, 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 053d81ddc..df196332f 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 = 24; + public static final int VERSION = 25; public static Map validate(int version, Map> settings,