commit | 8153838957ecbb30099a69280bf838db9dbceb58 | [log] [tgz] |
---|---|---|
author | TreeHugger Robot <treehugger-gerrit@google.com> | Mon Aug 30 18:06:23 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Mon Aug 30 18:06:23 2021 +0000 |
tree | 1ef0cf341899ee6017d46698635fd2a5fe0f34e6 | |
parent | c1ff5bbad8bd5b16864a03bfea0068627eb8efcd [diff] | |
parent | aa28886d7bc095a7a76d3f708eb75396a8775a89 [diff] |
Merge "Fix back button not touchable in SUW" into sc-v2-dev am: aa28886d7b Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Launcher3/+/15717096 Change-Id: If3cda5eccbbde96cebccddaebeb9717a8b54a06a
diff --git a/quickstep/src/com/android/launcher3/taskbar/TaskbarDragLayerController.java b/quickstep/src/com/android/launcher3/taskbar/TaskbarDragLayerController.java index 0afa480..b7c5db2 100644 --- a/quickstep/src/com/android/launcher3/taskbar/TaskbarDragLayerController.java +++ b/quickstep/src/com/android/launcher3/taskbar/TaskbarDragLayerController.java
@@ -123,11 +123,9 @@ */ public void updateInsetsTouchability(InsetsInfo insetsInfo) { insetsInfo.touchableRegion.setEmpty(); - if (mActivity.isThreeButtonNav()) { - // Always have nav buttons be touchable - mControllers.navbarButtonsViewController.addVisibleButtonsRegion( - mTaskbarDragLayer, insetsInfo.touchableRegion); - } + // Always have nav buttons be touchable + mControllers.navbarButtonsViewController.addVisibleButtonsRegion( + mTaskbarDragLayer, insetsInfo.touchableRegion); if (mTaskbarDragLayer.getAlpha() < AlphaUpdateListener.ALPHA_CUTOFF_THRESHOLD) { // Let touches pass through us.