diff options
author | 2020-07-10 02:50:47 +0200 | |
---|---|---|
committer | 2020-07-10 02:52:00 +0200 | |
commit | 73b8ae8e5e7f57c608c775272a2980995ab22bb3 (patch) | |
tree | 1315ae257af6598389750c392b0e52fd1a3cbf39 /src | |
parent | 2118a726f8b6134820e1ca5b7b802fa1344e453a (diff) | |
download | iced-73b8ae8e5e7f57c608c775272a2980995ab22bb3.tar.gz iced-73b8ae8e5e7f57c608c775272a2980995ab22bb3.tar.bz2 iced-73b8ae8e5e7f57c608c775272a2980995ab22bb3.zip |
Rename `ComboBox` to `PickList`
Diffstat (limited to 'src')
-rw-r--r-- | src/widget.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/widget.rs b/src/widget.rs index 034f02cd..b26f14d4 100644 --- a/src/widget.rs +++ b/src/widget.rs @@ -19,7 +19,7 @@ #[cfg(not(target_arch = "wasm32"))] mod platform { pub use crate::renderer::widget::{ - button, checkbox, combo_box, container, pane_grid, progress_bar, radio, + button, checkbox, container, pane_grid, pick_list, progress_bar, radio, scrollable, slider, text_input, Column, Row, Space, Text, }; @@ -44,10 +44,10 @@ mod platform { #[doc(no_inline)] pub use { - button::Button, checkbox::Checkbox, combo_box::ComboBox, - container::Container, image::Image, pane_grid::PaneGrid, - progress_bar::ProgressBar, radio::Radio, scrollable::Scrollable, - slider::Slider, svg::Svg, text_input::TextInput, + button::Button, checkbox::Checkbox, container::Container, image::Image, + pane_grid::PaneGrid, pick_list::PickList, progress_bar::ProgressBar, + radio::Radio, scrollable::Scrollable, slider::Slider, svg::Svg, + text_input::TextInput, }; #[cfg(any(feature = "canvas", feature = "glow_canvas"))] |