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

Commit 251e35da authored by Michael Wright's avatar Michael Wright
Browse files

Cancel pending meta actions when the key pressed *isn't* meta.

Bug: 17207035
Change-Id: I980107a453814e4e34e32db338620e90d3b388ee
parent 7653a30e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2176,7 +2176,7 @@ public class PhoneWindowManager implements WindowManagerPolicy {

        // Cancel any pending meta actions if we see any other keys being pressed between the down
        // of the meta key and its corresponding up.
        if (mPendingMetaAction && KeyEvent.isMetaKey(keyCode)) {
        if (mPendingMetaAction && !KeyEvent.isMetaKey(keyCode)) {
            mPendingMetaAction = false;
        }