Fix 2446779 Launcher2 crash - while adding short cut to home from all apps drawer

This commit is contained in:
Joe Onorato
2010-02-16 15:55:38 -05:00
parent 52fbb3cd46
commit 59d5245b0f

View File

@@ -954,7 +954,7 @@ public class Workspace extends ViewGroup implements DropTarget, DragSource, Drag
case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
if (info.container == NO_ID) {
// Came from all apps -- make a copy
info = new ShortcutInfo((ShortcutInfo)info);
info = new ShortcutInfo((ApplicationInfo)info);
}
view = mLauncher.createShortcut(R.layout.application, cellLayout, (ShortcutInfo)info);
break;