mirror of
https://github.com/moparisthebest/k-9
synced 2025-02-25 07:01:50 -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 sUseBackgroundAsUnreadIndicator = true;
|
||||||
private static boolean sThreadedViewEnabled = true;
|
private static boolean sThreadedViewEnabled = true;
|
||||||
private static SplitViewMode sSplitViewMode = SplitViewMode.WHEN_IN_LANDSCAPE;
|
private static SplitViewMode sSplitViewMode = SplitViewMode.NEVER;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @see #areDatabasesUpToDate()
|
* @see #areDatabasesUpToDate()
|
||||||
|
@ -230,7 +230,7 @@ public class GlobalSettings {
|
|||||||
new V(20, new BooleanSetting(true))
|
new V(20, new BooleanSetting(true))
|
||||||
));
|
));
|
||||||
s.put("splitViewMode", Settings.versions(
|
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);
|
SETTINGS = Collections.unmodifiableMap(s);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user