Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 27d10940 authored by Sunny Goyal's avatar Sunny Goyal Committed by Android (Google) Code Review
Browse files

Merge "Preventing concurrentmodification exception when dragging a icon with...

Merge "Preventing concurrentmodification exception when dragging a icon with shortcuts from inside a folder" into ub-launcher3-calgary-polish
parents 5f4d130d d0d495f5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
        }