diff options
author | 2022-11-11 08:43:36 -0800 | |
---|---|---|
committer | 2022-11-11 08:43:36 -0800 | |
commit | c4bca3f2af7ae9b2c8dfc3af48ab73dad852ed34 (patch) | |
tree | a9c75de888366ea4d0f82c821e6d90a7682ae380 /native/src/widget/action.rs | |
parent | 23299a555f8b7e908a6a14915307792a7cf97b9a (diff) | |
download | iced-c4bca3f2af7ae9b2c8dfc3af48ab73dad852ed34.tar.gz iced-c4bca3f2af7ae9b2c8dfc3af48ab73dad852ed34.tar.bz2 iced-c4bca3f2af7ae9b2c8dfc3af48ab73dad852ed34.zip |
Add text input operations
Diffstat (limited to 'native/src/widget/action.rs')
-rw-r--r-- | native/src/widget/action.rs | 8 |
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); + } } |