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:
Tony
2018-03-08 13:43:48 +00:00
parent b12ae37ffe
commit 4d9103215d

View File

@@ -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;
}