Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b104761c authored by cketti's avatar cketti
Browse files

Add BCC font size when exporting settings

parent 2c6634e6
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -291,6 +291,9 @@ public class GlobalSettings {
        s.put("openPgpSupportSignOnly", Settings.versions(
                new V(47, new BooleanSetting(false))
        ));
        s.put("fontSizeMessageViewBCC", Settings.versions(
                new V(48, new FontSizeSetting(FontSizes.FONT_DEFAULT))
        ));

        SETTINGS = Collections.unmodifiableMap(s);

+1 −1
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ public class Settings {
     *
     * @see SettingsExporter
     */
    public static final int VERSION = 47;
    public static final int VERSION = 48;

    static Map<String, Object> validate(int version, Map<String, TreeMap<Integer, SettingsDescription>> settings,
            Map<String, String> importedSettings, boolean useDefaultValues) {