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

Commit 1dba322b authored by Jorim Jaggi's avatar Jorim Jaggi Committed by android-build-merger
Browse files

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

am: df89cd1b

* commit 'df89cd1b':
  Fix bug with cancelled drag

Change-Id: I9ebb6f5252349cb5ec7e423ee18f49d6c34c64e0
parents 53fc5d3d df89cd1b
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;
                }
            }