diff options
author | 2022-06-07 04:51:44 +0200 | |
---|---|---|
committer | 2022-06-07 04:51:44 +0200 | |
commit | 396735b682433928f52ba777891e14f2fbc703c7 (patch) | |
tree | bd275980a2fe6bc2efa7288f08db007dcaa7b6a4 /src/pure | |
parent | 97555e67af8b4bcc77df69c5e72156e14948150e (diff) | |
download | iced-396735b682433928f52ba777891e14f2fbc703c7.tar.gz iced-396735b682433928f52ba777891e14f2fbc703c7.tar.bz2 iced-396735b682433928f52ba777891e14f2fbc703c7.zip |
Implement theme styling for `PickList` and `Menu`
Diffstat (limited to 'src/pure')
-rw-r--r-- | src/pure/widget.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/pure/widget.rs b/src/pure/widget.rs index a16ff22b..14cf3512 100644 --- a/src/pure/widget.rs +++ b/src/pure/widget.rs @@ -80,8 +80,7 @@ pub mod pane_grid { pub mod pick_list { //! Display a dropdown list of selectable values. - pub use iced_pure::overlay::menu::Style as Menu; - pub use iced_pure::widget::pick_list::{Style, StyleSheet}; + pub use iced_pure::widget::pick_list::{Appearance, StyleSheet}; /// A widget allowing the selection of a single value from a list of options. pub type PickList<'a, T, Message, Theme> = |