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

Commit e56d191e authored by Felipe Leme's avatar Felipe Leme
Browse files

Fixed ViewNode.setText(...)

Bug: 111276913
Test: manual verification

Change-Id: If5bec7931a6ca6e4f05c79bf9bbb98ff5179cb98
parent 21c9a426
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -238,6 +238,8 @@ public final class ViewNode extends AssistStructure.ViewNode {


        @Override
        @Override
        public void setText(CharSequence text, int selectionStart, int selectionEnd) {
        public void setText(CharSequence text, int selectionStart, int selectionEnd) {
            // TODO(b/111276913): temporarily setting directly; should be done on superclass instead
            mNode.mText = text;
            // TODO(b/111276913): implement or move to superclass
            // TODO(b/111276913): implement or move to superclass
        }
        }