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

Commit d05867d4 authored by Sally Yuen's avatar Sally Yuen Committed by Android (Google) Code Review
Browse files

Merge "check for null listenerInfo for drag&drop" into sc-v2-dev

parents 81f5da9e 84bcd893
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -27060,7 +27060,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
        switch (event.mAction) {
            case DragEvent.ACTION_DRAG_STARTED: {
                if (result && li.mOnDragListener != null) {
                if (result && li != null && li.mOnDragListener != null) {
                    sendWindowContentChangedAccessibilityEvent(
                            AccessibilityEvent.CONTENT_CHANGE_TYPE_UNDEFINED);
                }
@@ -27074,7 +27074,8 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
                refreshDrawableState();
            } break;
            case DragEvent.ACTION_DROP: {
                if (result && (li.mOnDragListener != null | li.mOnReceiveContentListener != null)) {
                if (result && li != null && (li.mOnDragListener != null
                        || li.mOnReceiveContentListener != null)) {
                    sendWindowContentChangedAccessibilityEvent(
                            AccessibilityEvent.CONTENT_CHANGE_TYPE_DRAG_DROPPED);
                }