OverviewActions: Creating single view instance.

Makes use of there being a single instance of OverviewActionsView
rather than each Task having it's own.

Change-Id: I881121f84de99cade3cd8f07fa8510a557b28f57
This commit is contained in:
Sreyas
2020-02-21 17:53:02 -08:00
parent 9f30165b8c
commit 321bfae905
11 changed files with 140 additions and 106 deletions

View File

@@ -196,7 +196,10 @@ public abstract class BaseQuickstepLauncher extends Launcher
if (FeatureFlags.ENABLE_OVERVIEW_ACTIONS.get() && removeShelfFromOverview(this)) {
// Overview is above all other launcher elements, including qsb, so move it to the top.
getOverviewPanelContainer().bringToFront();
getOverviewPanel().bringToFront();
if (getActionsView() != null) {
getActionsView().bringToFront();
}
}
}