Merge "Preventing concurrentmodification exception when dragging a icon with shortcuts from inside a folder" into ub-launcher3-calgary-polish

This commit is contained in:
Sunny Goyal
2016-09-07 21:48:50 +00:00
committed by Android (Google) Code Review
@@ -260,7 +260,7 @@ public class DragController implements DragDriver.EventListener, TouchController
dragView.show(mMotionDownX, mMotionDownY);
mDistanceSinceScroll = 0;
for (DragListener listener : mListeners) {
for (DragListener listener : new ArrayList<>(mListeners)) {
listener.onDragStart(mDragObject, mOptions);
}