Tap on recents button twice to go to last app

Fixes: 190660016
Test: Tapped on recents twice and saw last app.
Tapped on recents and tried to tap on other app
icons and none of them launched.

Change-Id: Ie89f1ec0464f194087dc07ab99deb8223ab6ddb8
This commit is contained in:
Vinit Nayak
2021-06-15 15:12:17 -07:00
parent 96592dedc2
commit 113377d8b8
3 changed files with 15 additions and 4 deletions

View File

@@ -94,8 +94,10 @@ public class TaskbarNavButtonController {
}
private void navigateToOverview() {
mService.getOverviewCommandHelper()
.addCommand(OverviewCommandHelper.TYPE_SHOW);
int commandType = mService.getOverviewCommandHelper().isOverviewVisible() ?
OverviewCommandHelper.TYPE_TOGGLE :
OverviewCommandHelper.TYPE_SHOW;
mService.getOverviewCommandHelper().addCommand(commandType);
}
private void executeBack() {