am 59551217: Merge "Attempt to fix crash on workspace drag and drop on certain JB devices" into ub-now-mister-ugly

* commit '59551217428a9cfbe11f727d0b69246a291931b5':
  Attempt to fix crash on workspace drag and drop on certain JB devices
diff --git a/src/com/android/launcher3/DragLayer.java b/src/com/android/launcher3/DragLayer.java
index 7ccbe6b..bbf8c8c 100644
--- a/src/com/android/launcher3/DragLayer.java
+++ b/src/com/android/launcher3/DragLayer.java
@@ -736,7 +736,13 @@
             mDropAnim.cancel();
         }
         if (mDropView != null) {
-            mDragController.onDeferredEndDrag(mDropView);
+            final DragView dropView = mDropView;
+            post(new Runnable() {
+                @Override
+                public void run() {
+                    mDragController.onDeferredEndDrag(dropView);
+                }
+            });
         }
         mDropView = null;
         invalidate();