diff --git a/src/com/android/launcher3/Hotseat.java b/src/com/android/launcher3/Hotseat.java index b3ae15ed4d..e86c02cb01 100644 --- a/src/com/android/launcher3/Hotseat.java +++ b/src/com/android/launcher3/Hotseat.java @@ -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