commit | 667f0897dc92d8286b41d3cc014f62c4ee6067e1 | [log] [tgz] |
---|---|---|
author | TreeHugger Robot <treehugger-gerrit@google.com> | Mon Aug 30 18:28:06 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Mon Aug 30 18:28:06 2021 +0000 |
tree | 1d5071f09575270a84e96904b38c5bc99140cbdf | |
parent | 271937752253449b1192cb3e09fd9fd3656cef2c [diff] | |
parent | 8153838957ecbb30099a69280bf838db9dbceb58 [diff] |
Merge "Fix back button not touchable in SUW" into sc-v2-dev am: aa28886d7b am: 8153838957 Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Launcher3/+/15717096 Change-Id: Id54a996730da04e087cbcf53b833df2804393dee
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.