From 1cdb6d066123cb9b2f9ea2c66246b29bf1dd9cf2 Mon Sep 17 00:00:00 2001 From: Tony Wickham Date: Thu, 17 Sep 2015 11:08:27 -0700 Subject: [PATCH] onDropChild() always marks the cell as occupied. Bug: 24164487 Change-Id: I11ef638a56b638ee82c3cd748340995970fc7e32 --- src/com/android/launcher3/CellLayout.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/com/android/launcher3/CellLayout.java b/src/com/android/launcher3/CellLayout.java index c018341ffd..d48873762b 100644 --- a/src/com/android/launcher3/CellLayout.java +++ b/src/com/android/launcher3/CellLayout.java @@ -2667,6 +2667,7 @@ public class CellLayout extends ViewGroup implements BubbleTextShadowHandler { LayoutParams lp = (LayoutParams) child.getLayoutParams(); lp.dropped = true; child.requestLayout(); + markCellsAsOccupiedForView(child); } }