mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-27 11:42:16 -05:00
Change default value of split-screen setting
This commit is contained in:
parent
9a4b674282
commit
40bbc5f5ae
@ -260,7 +260,7 @@ public class K9 extends Application {
|
||||
|
||||
private static boolean sUseBackgroundAsUnreadIndicator = true;
|
||||
private static boolean sThreadedViewEnabled = true;
|
||||
private static SplitViewMode sSplitViewMode = SplitViewMode.WHEN_IN_LANDSCAPE;
|
||||
private static SplitViewMode sSplitViewMode = SplitViewMode.NEVER;
|
||||
|
||||
/**
|
||||
* @see #areDatabasesUpToDate()
|
||||
|
@ -230,7 +230,7 @@ public class GlobalSettings {
|
||||
new V(20, new BooleanSetting(true))
|
||||
));
|
||||
s.put("splitViewMode", Settings.versions(
|
||||
new V(23, new EnumSetting(SplitViewMode.class, SplitViewMode.WHEN_IN_LANDSCAPE))
|
||||
new V(23, new EnumSetting(SplitViewMode.class, SplitViewMode.NEVER))
|
||||
));
|
||||
|
||||
SETTINGS = Collections.unmodifiableMap(s);
|
||||
|
Loading…
Reference in New Issue
Block a user