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

Commit 27e35bf6 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "AM: Clear keyguardGoingAway after it has gone away"

parents 0a2ff2f6 6c91900d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -25424,6 +25424,7 @@ public class ActivityManagerService extends IActivityManager.Stub
        public void notifyAppTransitionFinished() {
            synchronized (ActivityManagerService.this) {
                mStackSupervisor.notifyAppTransitionDone();
                mKeyguardController.notifyAppTransitionDone();
            }
        }
+4 −0
Original line number Diff line number Diff line
@@ -384,4 +384,8 @@ class KeyguardController {
        proto.write(KEYGUARD_OCCLUDED, mOccluded);
        proto.end(token);
    }

    public void notifyAppTransitionDone() {
        setKeyguardGoingAway(false);
    }
}