Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4d910321 authored by Tony's avatar Tony
Browse files

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
parent b12ae37f
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -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;
    }