Add BCC font size when exporting settings
This commit is contained in:
parent
2c6634e6e7
commit
b104761c73
2 changed files with 4 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue