From 6ef651c934a871f3ade61f34b67cc5c162053fdd Mon Sep 17 00:00:00 2001 From: M66B Date: Sat, 13 Feb 2021 07:54:52 +0100 Subject: [PATCH] Fixed 3 column scrim --- app/src/main/java/eu/faircode/email/DrawerLayoutEx.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/eu/faircode/email/DrawerLayoutEx.java b/app/src/main/java/eu/faircode/email/DrawerLayoutEx.java index 04c35e7554..eb1e0899b8 100644 --- a/app/src/main/java/eu/faircode/email/DrawerLayoutEx.java +++ b/app/src/main/java/eu/faircode/email/DrawerLayoutEx.java @@ -51,7 +51,7 @@ public class DrawerLayoutEx extends DrawerLayout { void setup(Configuration config, View drawerContainer, ActionBarDrawerToggle drawerToggle) { SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext()); boolean normal = config.isLayoutSizeAtLeast(Configuration.SCREENLAYOUT_SIZE_NORMAL); - boolean landscape3 = prefs.getBoolean("landscape3", false); + boolean landscape3 = prefs.getBoolean("landscape3", true); if (normal && landscape3 && config.orientation == Configuration.ORIENTATION_LANDSCAPE) {