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

Commit 455eca41 authored by Brian Isganitis's avatar Brian Isganitis Committed by Android (Google) Code Review
Browse files

Merge "Still launch disabled item if we can't handle its click." into tm-qpr-dev

parents b9e03da5 424c7f43
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -762,9 +762,7 @@ public class TaskbarActivityContext extends BaseTaskbarContext {
            });
        } else if (tag instanceof WorkspaceItemInfo) {
            WorkspaceItemInfo info = (WorkspaceItemInfo) tag;
            if (info.isDisabled()) {
                ItemClickHandler.handleDisabledItemClicked(info, this);
            } else {
            if (!info.isDisabled() || !ItemClickHandler.handleDisabledItemClicked(info, this)) {
                TaskbarUIController taskbarUIController = mControllers.uiController;
                RecentsView recents = taskbarUIController.getRecentsView();
                if (recents != null