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

This commit is contained in:
Alex Chau
2021-09-29 10:45:56 +00:00
committed by Android (Google) Code Review
+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