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

Commit ae825876 authored by Svetoslav Ganov's avatar Svetoslav Ganov Committed by Android Git Automerger
Browse files

am 3f28a1b7: Merge "Performing click and long click for accessiblity not...

am 3f28a1b7: Merge "Performing click and long click for accessiblity not returning result." into jb-dev

* commit '3f28a1b7':
  Performing click and long click for accessiblity not returning result.
parents f4588f83 3f28a1b7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -6453,12 +6453,12 @@ public class View implements Drawable.Callback, Drawable.Callback2, KeyEvent.Cal
        switch (action) {
            case AccessibilityNodeInfo.ACTION_CLICK: {
                if (isClickable()) {
                    performClick();
                    return performClick();
                }
            } break;
            case AccessibilityNodeInfo.ACTION_LONG_CLICK: {
                if (isLongClickable()) {
                    performLongClick();
                    return performLongClick();
                }
            } break;
            case AccessibilityNodeInfo.ACTION_FOCUS: {