summaryrefslogtreecommitdiffstats
path: root/glow/src/widget/combo_box.rs
diff options
context:
space:
mode:
Diffstat (limited to 'glow/src/widget/combo_box.rs')
-rw-r--r--glow/src/widget/combo_box.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/glow/src/widget/combo_box.rs b/glow/src/widget/combo_box.rs
deleted file mode 100644
index 20feeaca..00000000
--- a/glow/src/widget/combo_box.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-//! Display a dropdown list of selectable values.
-pub use iced_native::combo_box::State;
-
-pub use iced_graphics::combo_box::{Style, StyleSheet};
-pub use iced_graphics::overlay::menu::Style as Menu;
-
-/// A widget allowing the selection of a single value from a list of options.
-pub type ComboBox<'a, T, Message> =
- iced_native::ComboBox<'a, T, Message, crate::Renderer>;