diff options
author | 2022-11-14 00:24:23 +0100 | |
---|---|---|
committer | 2022-11-14 00:24:23 +0100 | |
commit | f5c9f63329ec420757c81ef73ab76e7a8cb2cd2e (patch) | |
tree | 06cd44cdc5abfca94c1acfa10ab0281ae21c4b0c /native/src/widget/action.rs | |
parent | 5f08b8d41ae2d749bd11068f103a0f8ce3abd7bf (diff) | |
parent | a7a4a92466a4447f8d2e9b5ae2fc715ba6262de0 (diff) | |
download | iced-f5c9f63329ec420757c81ef73ab76e7a8cb2cd2e.tar.gz iced-f5c9f63329ec420757c81ef73ab76e7a8cb2cd2e.tar.bz2 iced-f5c9f63329ec420757c81ef73ab76e7a8cb2cd2e.zip |
Merge pull request #1529 from tarkah/feat/text-input-operations
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); + } } |