mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-20 19:38:21 +00:00
Merge "Fix alt-tab initial focus in overview on phones" into main
This commit is contained in:
committed by
Android (Google) Code Review
commit
00a484bf03
@@ -218,9 +218,13 @@ public class OverviewCommandHelper {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
if (cmd.type == TYPE_KEYBOARD_INPUT && allowQuickSwitch) {
|
||||
uiController.openQuickSwitchView();
|
||||
return true;
|
||||
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)");
|
||||
|
||||
Reference in New Issue
Block a user