Merge "Fix CellLayout cast exception when drag is canceled" into sc-dev am: 76f5572648 am: c13b47f7bf

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

Change-Id: I77835904fcbef8110d6880566a785999c8d98f79
This commit is contained in:
TreeHugger Robot
2021-06-12 12:55:20 +00:00
committed by Automerger Merge Worker
+5
View File
@@ -1926,6 +1926,11 @@ public class Workspace extends PagedView<WorkspacePageIndicator>
CellLayout layout = (CellLayout) cell.getParent().getParent();
layout.markCellsAsOccupiedForView(cell);
}
} else {
// When drag is cancelled, reattach content view back to its original parent.
if (mDragInfo.cell instanceof LauncherAppWidgetHostView) {
d.dragView.detachContentView(/* reattachToPreviousParent= */ true);
}
}
final CellLayout parent = (CellLayout) cell.getParent().getParent();