Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 900ece50 authored by Daniel Sandler's avatar Daniel Sandler
Browse files

Do not show immersive mode help in touch exploration mode.

Bug: 11277364
Change-Id: Ifafcbff38e34c0ef08d9a466d93ce591369183a3
parent 82f31701
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -5186,7 +5186,8 @@ public class PhoneWindowManager implements WindowManagerPolicy {
        final int flags = View.SYSTEM_UI_FLAG_IMMERSIVE | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
        return mNavigationBar != null
                && (vis & View.SYSTEM_UI_FLAG_HIDE_NAVIGATION) != 0
                && (vis & flags) != 0;
                && (vis & flags) != 0
                && canHideNavigationBar();
    }

    /**