diff options
Diffstat (limited to 'src/com')
-rw-r--r-- | src/com/android/launcher2/CellLayout.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/com/android/launcher2/CellLayout.java b/src/com/android/launcher2/CellLayout.java index 4e618af..121aa22 100644 --- a/src/com/android/launcher2/CellLayout.java +++ b/src/com/android/launcher2/CellLayout.java @@ -646,11 +646,13 @@ public class CellLayout extends ViewGroup implements Dimmable { @Override public void removeAllViews() { + super.removeAllViews(); clearOccupiedCells(); } @Override public void removeAllViewsInLayout() { + super.removeAllViewsInLayout(); clearOccupiedCells(); } |