Rename ComboBox to PickList

This commit is contained in:
Héctor Ramón Jiménez 2020-07-10 02:50:47 +02:00
parent 2118a726f8
commit 73b8ae8e5e
17 changed files with 80 additions and 80 deletions

View file

@ -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;

View file

@ -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,