diff options
Diffstat (limited to 'style')
-rw-r--r-- | style/src/lib.rs | 2 | ||||
-rw-r--r-- | style/src/pick_list.rs (renamed from style/src/combo_box.rs) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/style/src/lib.rs b/style/src/lib.rs index b19d6600..8e402bb1 100644 --- a/style/src/lib.rs +++ b/style/src/lib.rs @@ -6,9 +6,9 @@ pub use iced_core::{Background, Color}; pub mod button; pub mod checkbox; -pub mod combo_box; pub mod container; pub mod menu; +pub mod pick_list; pub mod progress_bar; pub mod radio; pub mod scrollable; diff --git a/style/src/combo_box.rs b/style/src/pick_list.rs index 4d0c4e46..fbd431c0 100644 --- a/style/src/combo_box.rs +++ b/style/src/pick_list.rs @@ -1,7 +1,7 @@ use crate::menu; use iced_core::{Background, Color}; -/// The appearance of a combo box. +/// The appearance of a pick list. #[derive(Debug, Clone, Copy)] pub struct Style { pub text_color: Color, |