diff options
author | 2022-12-14 03:29:20 +0100 | |
---|---|---|
committer | 2022-12-14 03:31:12 +0100 | |
commit | 39f49186cefa688a1cc80ed754ec4028c642636a (patch) | |
tree | 0cbc0a818a9b6259c6faf72cf1090c7b489e25a1 /src | |
parent | fe5ab1ee87ede2d80212aa58724fd5ed463f58e4 (diff) | |
download | iced-39f49186cefa688a1cc80ed754ec4028c642636a.tar.gz iced-39f49186cefa688a1cc80ed754ec4028c642636a.tar.bz2 iced-39f49186cefa688a1cc80ed754ec4028c642636a.zip |
Rename `pick_list::AccessoryContent` to `Handle`
... and rename `Default` variant to `Arrow`.
Diffstat (limited to 'src')
-rw-r--r-- | src/widget.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/widget.rs b/src/widget.rs index 505ae799..acc9da9a 100644 --- a/src/widget.rs +++ b/src/widget.rs @@ -80,9 +80,7 @@ pub mod pane_grid { pub mod pick_list { //! Display a dropdown list of selectable values. - pub use iced_native::widget::pick_list::{ - AccessoryContent, Appearance, StyleSheet, - }; + pub use iced_native::widget::pick_list::{Appearance, Handle, StyleSheet}; /// A widget allowing the selection of a single value from a list of options. pub type PickList<'a, T, Message, Renderer = crate::Renderer> = |