diff options
author | 2023-02-13 11:38:05 +0100 | |
---|---|---|
committer | 2023-04-11 05:11:19 +0200 | |
commit | 7b369842959511f17d5c27941fd0308484bff8ea (patch) | |
tree | db4bcb9ce1f8770e00a51743e397ad4f89b0be60 /src | |
parent | 931b30dc5ac17b65b1fb996cb4b87fc946c410e3 (diff) | |
download | iced-7b369842959511f17d5c27941fd0308484bff8ea.tar.gz iced-7b369842959511f17d5c27941fd0308484bff8ea.tar.bz2 iced-7b369842959511f17d5c27941fd0308484bff8ea.zip |
feat: added handle to text_input
Diffstat (limited to 'src')
-rw-r--r-- | src/widget.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widget.rs b/src/widget.rs index e2b0537e..948456d3 100644 --- a/src/widget.rs +++ b/src/widget.rs @@ -124,7 +124,7 @@ pub mod text_input { //! Display fields that can be filled with text. pub use iced_native::widget::text_input::{ focus, move_cursor_to, move_cursor_to_end, move_cursor_to_front, - select_all, Appearance, Id, StyleSheet, + select_all, Appearance, Handle, HandlePosition, Id, StyleSheet, }; /// A field that can be filled with text. |