summaryrefslogtreecommitdiffstats
path: root/native/src/widget/action.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--native/src/widget/action.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/native/src/widget/action.rs b/native/src/widget/action.rs
index 0345fe2b..593d6f63 100644
--- a/native/src/widget/action.rs
+++ b/native/src/widget/action.rs
@@ -93,4 +93,12 @@ where
) {
self.operation.scrollable(state, id);
}
+
+ fn text_input(
+ &mut self,
+ state: &mut dyn operation::TextInput,
+ id: Option<&Id>,
+ ) {
+ self.operation.text_input(state, id);
+ }
}