mirror of https://github.com/M66B/FairEmail.git
Small fix
This commit is contained in:
parent
99830ecbf4
commit
9530fca776
|
@ -54,8 +54,9 @@ public class DrawerLayoutEx extends DrawerLayout {
|
|||
setScrimColor(Helper.resolveColor(getContext(), R.attr.colorDrawerScrim));
|
||||
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext());
|
||||
boolean landscape = prefs.getBoolean("landscape", true);
|
||||
boolean landscape3 = prefs.getBoolean("landscape3", false);
|
||||
if (landscape3) {
|
||||
if (landscape && landscape3) {
|
||||
ViewGroup childContent = (ViewGroup) getChildAt(0);
|
||||
ViewGroup childDrawer = (ViewGroup) getChildAt(1);
|
||||
if (config.orientation == Configuration.ORIENTATION_LANDSCAPE) {
|
||||
|
|
Loading…
Reference in New Issue