diff options
author | 2020-01-02 18:07:00 +0100 | |
---|---|---|
committer | 2020-01-02 18:11:45 +0100 | |
commit | 986f01237f227ad2eaabda982324fc26840cb12b (patch) | |
tree | 336f86caea33f07676d20d8383c78dc9d9875674 /native/src/widget.rs | |
parent | bf8f83decc039494d310f6ecbb05cbab2c241cbf (diff) | |
download | iced-986f01237f227ad2eaabda982324fc26840cb12b.tar.gz iced-986f01237f227ad2eaabda982324fc26840cb12b.tar.bz2 iced-986f01237f227ad2eaabda982324fc26840cb12b.zip |
change(widget): make height adjustable at widget level
addtionally rename Progressbar to ProgressBar
Diffstat (limited to 'native/src/widget.rs')
-rw-r--r-- | native/src/widget.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/native/src/widget.rs b/native/src/widget.rs index d899da58..ccc9b47e 100644 --- a/native/src/widget.rs +++ b/native/src/widget.rs @@ -25,7 +25,7 @@ pub mod checkbox; pub mod column; pub mod container; pub mod image; -pub mod progressbar; +pub mod progress_bar; pub mod radio; pub mod row; pub mod scrollable; @@ -46,7 +46,7 @@ pub use container::Container; #[doc(no_inline)] pub use image::Image; #[doc(no_inline)] -pub use progressbar::Progressbar; +pub use progress_bar::ProgressBar; #[doc(no_inline)] pub use radio::Radio; #[doc(no_inline)] |