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

Commit df89cd1b authored by Jorim Jaggi's avatar Jorim Jaggi Committed by Android (Google) Code Review
Browse files

Merge "Fix bug with cancelled drag" into nyc-dev

parents 0751a83a f300badb
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -257,8 +257,12 @@ public class RecentsViewTouchHandler {
            case MotionEvent.ACTION_UP:
            case MotionEvent.ACTION_CANCEL: {
                if (mDragRequested) {
                    boolean cancelled = action == MotionEvent.ACTION_CANCEL;
                    if (cancelled) {
                        EventBus.getDefault().send(new DragDropTargetChangedEvent(mDragTask, null));
                    }
                    EventBus.getDefault().send(new DragEndEvent(mDragTask, mTaskView,
                            action == MotionEvent.ACTION_UP ? mLastDropTarget : null));
                            !cancelled ? mLastDropTarget : null));
                    break;
                }
            }