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

Commit 5c6263af authored by Schneider Victor-tulias's avatar Schneider Victor-tulias
Browse files

Fix alt-tab initial focus in overview on phones

Flag: LEGACY ENABLE_KEYBOARD_QUICK_SWITCH ENABLED
Fixes: 325057678
Test: used alt+tab on a phone from home and from an app
Change-Id: I98388fea448fd1932d767c420e232d1451e0bbfe
parent 8b997289
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -218,9 +218,13 @@ public class OverviewCommandHelper {
                    return true;
                }
            }
            if (cmd.type == TYPE_KEYBOARD_INPUT && allowQuickSwitch) {
            if (cmd.type == TYPE_KEYBOARD_INPUT) {
                if (allowQuickSwitch) {
                    uiController.openQuickSwitchView();
                    return true;
                } else {
                    mKeyboardTaskFocusIndex = 0;
                }
            }
            if (cmd.type == TYPE_HOME) {
                ActiveGestureLog.INSTANCE.addLog("OverviewCommandHelper.executeCommand(TYPE_HOME)");