mirror of
https://github.com/moparisthebest/k-9
synced 2024-12-24 08:38:51 -05:00
Fix Settings version number for batch button preferences.
This commit is contained in:
parent
b5856a7ac5
commit
12d1301056
@ -197,22 +197,22 @@ public class GlobalSettings {
|
||||
new V(4, new BooleanSetting(true))
|
||||
));
|
||||
s.put("batchButtonsMarkRead", Settings.versions(
|
||||
new V(1, new BooleanSetting(true))
|
||||
new V(8, new BooleanSetting(true))
|
||||
));
|
||||
s.put("batchButtonsDelete", Settings.versions(
|
||||
new V(1, new BooleanSetting(true))
|
||||
new V(8, new BooleanSetting(true))
|
||||
));
|
||||
s.put("batchButtonsArchive", Settings.versions(
|
||||
new V(1, new BooleanSetting(false))
|
||||
new V(8, new BooleanSetting(false))
|
||||
));
|
||||
s.put("batchButtonsMove", Settings.versions(
|
||||
new V(1, new BooleanSetting(false))
|
||||
new V(8, new BooleanSetting(false))
|
||||
));
|
||||
s.put("batchButtonsFlag", Settings.versions(
|
||||
new V(1, new BooleanSetting(true))
|
||||
new V(8, new BooleanSetting(true))
|
||||
));
|
||||
s.put("batchButtonsUnselect", Settings.versions(
|
||||
new V(1, new BooleanSetting(true))
|
||||
new V(8, new BooleanSetting(true))
|
||||
));
|
||||
|
||||
SETTINGS = Collections.unmodifiableMap(s);
|
||||
|
@ -35,7 +35,7 @@ public class Settings {
|
||||
*
|
||||
* @see SettingsExporter
|
||||
*/
|
||||
public static final int VERSION = 7;
|
||||
public static final int VERSION = 8;
|
||||
|
||||
public static Map<String, Object> validate(int version, Map<String,
|
||||
TreeMap<Integer, SettingsDescription>> settings,
|
||||
|
Loading…
Reference in New Issue
Block a user