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

Commit 2dabc828 authored by Selim Cinek's avatar Selim Cinek
Browse files

Fixed that HUNs wouldn't show when the keyguard is occluded

Change-Id: Ia6fcb57eceb8e3b3e0d193d9f274cc64343fe5af
Fixes: 30770767
parent 4ae263c8
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -2504,8 +2504,7 @@ public abstract class BaseStatusBar extends SystemUI implements

        boolean inUse = mPowerManager.isScreenOn()
                && (!mStatusBarKeyguardViewManager.isShowing()
                || mStatusBarKeyguardViewManager.isOccluded())
                && !mStatusBarKeyguardViewManager.isInputRestricted();
                || mStatusBarKeyguardViewManager.isOccluded());
        try {
            inUse = inUse && !mDreamManager.isDreaming();
        } catch (RemoteException e) {