Add missing accessibility in common textedit

This commit is contained in:
Laurent Montel 2024-03-21 16:03:10 +01:00 committed by Olivier Goffart
parent 1a57e9fc7a
commit 7ab5d7f5a1

View file

@ -10,6 +10,9 @@ export component TextEdit inherits ScrollView {
in property <length> font-size <=> i-text-input.font-size;
in-out property <string> text <=> i-text-input.text;
accessible-role: AccessibleRole.text-input;
accessible-value <=> text;
callback edited(/* text */ string);
public function set-selection-offsets(start: int, end: int) {