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

Commit 242724ee authored by Svetoslav Ganov's avatar Svetoslav Ganov
Browse files

Add to string implementation for the new accessibility actions.

bug:8122974

Change-Id: I3d0907af37a6622ab867317e67c773a8aeb16abf
parent 0214f205
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
@@ -1914,8 +1914,16 @@ public class AccessibilityNodeInfo implements Parcelable {
                return "ACTION_SCROLL_FORWARD";
            case ACTION_SCROLL_BACKWARD:
                return "ACTION_SCROLL_BACKWARD";
            case ACTION_CUT:
                return "ACTION_CUT";
            case ACTION_COPY:
                return "ACTION_COPY";
            case ACTION_PASTE:
                return "ACTION_PASTE";
            case ACTION_SET_SELECTION:
                return "ACTION_SET_SELECTION";
            default:
                throw new IllegalArgumentException("Unknown action: " + action);
                return"ACTION_UNKNOWN";
        }
    }