summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2023-01-02 20:36:40 +0100
committerLibravatar GitHub <noreply@github.com>2023-01-02 20:36:40 +0100
commitda1b375579c0d4e7a6bd463c8e000af5668354ae (patch)
tree6eb2dffa65a0cf91762c160f43d02c16df796bd1 /src
parentd956b8a9fb9d0f18c5568c91fc7b97900477a68e (diff)
parent39f49186cefa688a1cc80ed754ec4028c642636a (diff)
downloadiced-da1b375579c0d4e7a6bd463c8e000af5668354ae.tar.gz
iced-da1b375579c0d4e7a6bd463c8e000af5668354ae.tar.bz2
iced-da1b375579c0d4e7a6bd463c8e000af5668354ae.zip
Merge pull request #1562 from casperstorm/feat/custom-accessory-content
Added ability to customize the handle of a `pick_list`
Diffstat (limited to 'src')
-rw-r--r--src/widget.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widget.rs b/src/widget.rs
index 76cea7be..d2d4a1b8 100644
--- a/src/widget.rs
+++ b/src/widget.rs
@@ -80,7 +80,7 @@ pub mod pane_grid {
pub mod pick_list {
//! Display a dropdown list of selectable values.
- pub use iced_native::widget::pick_list::{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> =