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

Commit f300badb authored by Jorim Jaggi's avatar Jorim Jaggi
Browse files

Fix bug with cancelled drag

Bug: 28257206
Change-Id: Ic7342f4284185486e884836220b05423e308f7ae
parent dbe44ac4
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;
                }
            }