mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 18:58:19 +00:00
Show icon when drop on deferred drop target is canceled
Before: Drag to uninstall -> cancel -> icon stays hidden Now the icon reappears. Bug: 74356377 Change-Id: I7a69e583098bced31cf38af04dc9861dfa4118e2
This commit is contained in:
@@ -2970,8 +2970,9 @@ public class Workspace extends PagedView<WorkspacePageIndicator>
|
||||
+ "Workspace#onDropCompleted. Please file a bug. ");
|
||||
}
|
||||
}
|
||||
if (d.cancelled && mDragInfo != null && mDragInfo.cell != null) {
|
||||
mDragInfo.cell.setVisibility(VISIBLE);
|
||||
View cell = getHomescreenIconByItemId(d.originalDragInfo.id);
|
||||
if (d.cancelled && cell != null) {
|
||||
cell.setVisibility(VISIBLE);
|
||||
}
|
||||
mDragInfo = null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user