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

Commit 14db3625 authored by Winson's avatar Winson
Browse files

Fixing regression in call to showRecents().

- Previously, the call was made to showRecents() which took a single 
  boolean to determine alt-tab state, and after the refactoring, it
  no longer made the same call.

Bug: 28663474
Change-Id: I75fb793e56c9a094a4372d7157dbd0dd7ecdbda7
parent 5df0ee53
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3360,7 +3360,7 @@ public class PhoneWindowManager implements WindowManagerPolicy {
                final int shiftlessModifiers = event.getModifiers() & ~KeyEvent.META_SHIFT_MASK;
                if (KeyEvent.metaStateHasModifiers(shiftlessModifiers, KeyEvent.META_ALT_ON)) {
                    mRecentAppsHeldModifiers = shiftlessModifiers;
                    showRecentApps(true);
                    showRecentApps(true, false);
                    return -1;
                }
            }