diff options
author | 2023-04-11 06:18:52 +0200 | |
---|---|---|
committer | 2023-04-11 06:18:52 +0200 | |
commit | ff24f9040c822fa7706087091e92ebee1e5211c5 (patch) | |
tree | 18e5a9053b092cb9d0d9f0b95f35b1bdeb6aaa7f /src/widget.rs | |
parent | 931b30dc5ac17b65b1fb996cb4b87fc946c410e3 (diff) | |
parent | 927c3a8caaefc241c48d6200266d286e20dc2076 (diff) | |
download | iced-ff24f9040c822fa7706087091e92ebee1e5211c5.tar.gz iced-ff24f9040c822fa7706087091e92ebee1e5211c5.tar.bz2 iced-ff24f9040c822fa7706087091e92ebee1e5211c5.zip |
Merge pull request #1702 from casperstorm/feat/text_input_handle
Added `Icon` to `text_input`
Diffstat (limited to 'src/widget.rs')
-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..c0ac716f 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, Icon, Id, Side, StyleSheet, }; /// A field that can be filled with text. |