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

Commit 111eb468 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "[Bugfix] Fix the problem that the home key can not work in some cases."...

Merge "[Bugfix] Fix the problem that the home key can not work in some cases." am: 1ee05622 am: 57cf8b77

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2299757



Change-Id: Ib42e649d22a7bbe859c86367cb20e4868983f61d
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 5bcc5ffa 57cf8b77
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -3516,7 +3516,12 @@ public class PhoneWindowManager implements WindowManagerPolicy {
                    @Override
                    public void onKeyguardExitResult(boolean success) {
                        if (success) {
                            final long origId = Binder.clearCallingIdentity();
                            try {
                                startDockOrHome(displayId, true /*fromHomeKey*/, awakenFromDreams);
                            } finally {
                                Binder.restoreCallingIdentity(origId);
                            }
                        }
                    }
                });