diff options
author | 2022-11-14 00:24:23 +0100 | |
---|---|---|
committer | 2022-11-14 00:24:23 +0100 | |
commit | f5c9f63329ec420757c81ef73ab76e7a8cb2cd2e (patch) | |
tree | 06cd44cdc5abfca94c1acfa10ab0281ae21c4b0c /src | |
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 '')
-rw-r--r-- | src/widget.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/widget.rs b/src/widget.rs index 8c8ea216..7c67a599 100644 --- a/src/widget.rs +++ b/src/widget.rs @@ -120,7 +120,8 @@ pub mod toggler { pub mod text_input { //! Display fields that can be filled with text. pub use iced_native::widget::text_input::{ - focus, Appearance, Id, StyleSheet, + focus, move_cursor_to, move_cursor_to_end, move_cursor_to_front, + select_all, Appearance, Id, StyleSheet, }; /// A field that can be filled with text. |