diff options
Diffstat (limited to 'web/src/widget')
-rw-r--r-- | web/src/widget/text_input.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/web/src/widget/text_input.rs b/web/src/widget/text_input.rs index e8d8ca2f..e4877f2a 100644 --- a/web/src/widget/text_input.rs +++ b/web/src/widget/text_input.rs @@ -223,4 +223,9 @@ impl State { // TODO Self::default() } + + /// Selects all the content of the [`TextInput`]. + pub fn select_all(&mut self) { + // TODO + } } |