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

Commit 929f4e89 authored by Adrian Roos's avatar Adrian Roos Committed by Android (Google) Code Review
Browse files

Merge "Partially fix the keyguard scrim" into lmp-dev

parents faa01928 69e510d6
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1706,7 +1706,8 @@ public class PhoneWindowManager implements WindowManagerPolicy {
    @Override
    public boolean isForceHiding(WindowManager.LayoutParams attrs) {
        return (attrs.privateFlags & PRIVATE_FLAG_KEYGUARD) != 0 ||
                (isKeyguardHostWindow(attrs) && isKeyguardSecureIncludingHidden());
                (isKeyguardHostWindow(attrs) && isKeyguardSecureIncludingHidden()) ||
                (attrs.type == TYPE_KEYGUARD_SCRIM);
    }

    @Override