Fix NPE when dragging Problem Loading Widget (issue 5899606)

Change-Id: I63656a2bb47a4af041f161e1f15095c89ab006b0
This commit is contained in:
Adam Cohen
2012-04-02 16:53:26 -07:00
parent 3535bde122
commit c0a5df9c65
+2 -1
View File
@@ -2295,7 +2295,8 @@ public class Workspace extends SmoothPagedView
final LauncherAppWidgetHostView hostView = (LauncherAppWidgetHostView) cell;
AppWidgetProviderInfo pinfo = hostView.getAppWidgetInfo();
if (pinfo.resizeMode != AppWidgetProviderInfo.RESIZE_NONE) {
if (pinfo != null &&
pinfo.resizeMode != AppWidgetProviderInfo.RESIZE_NONE) {
final Runnable addResizeFrame = new Runnable() {
public void run() {
DragLayer dragLayer = mLauncher.getDragLayer();