Merge "Always let Hotseat touches follow through to Workspace if not intercepted" into sc-v2-dev am: 81f168ee7c

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Launcher3/+/15897179

Change-Id: I3536a9f97ab244c3c113360773f92dbe7758cd54
This commit is contained in:
Alex Chau
2021-09-29 10:57:57 +00:00
committed by Automerger Merge Worker
+2 -1
View File
@@ -151,7 +151,8 @@ public class Hotseat extends CellLayout implements Insettable {
}
return mWorkspace.onTouchEvent(event);
}
return event.getY() > getCellHeight();
// Always let touch follow through to Workspace.
return false;
}
@Override