From 11a4937fbff0dbc50fb022513dc3b6c643154445 Mon Sep 17 00:00:00 2001 From: Winson Chung Date: Fri, 27 Apr 2012 15:12:38 -0700 Subject: Fixing issue where shortcuts and widgets were not being removed when the package was uninstalled (Bug 2657997, Bug 6335843) - Also fixes issue if we are dragging a shortcut/widget and it is removed. - Also exposes App Info for shortcuts and widgets Change-Id: I3bd5056f50f20e8b277dde6456df26eac815bcde --- src/com/android/launcher2/DragController.java | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'src/com/android/launcher2/DragController.java') diff --git a/src/com/android/launcher2/DragController.java b/src/com/android/launcher2/DragController.java index c9bebe3c5..4be4e8f7b 100644 --- a/src/com/android/launcher2/DragController.java +++ b/src/com/android/launcher2/DragController.java @@ -380,10 +380,13 @@ public class DragController { // Added null checks to prevent NPE we've seen in the wild if (dragInfo != null && dragInfo.intent != null && - info.intent != null && - dragInfo.intent.getComponent().equals(info.intent.getComponent())) { - cancelDrag(); - return; + info.intent != null) { + boolean isSamePackage = dragInfo.intent.getPackage().equals( + info.intent.getPackage()); + if (isSamePackage) { + cancelDrag(); + return; + } } } } -- cgit v1.2.3