diff options
author | 2022-12-13 10:05:52 +0100 | |
---|---|---|
committer | 2022-12-13 10:05:52 +0100 | |
commit | bb4161c1aec0a2a76de39ff2e5ed65f7acbad471 (patch) | |
tree | 92e2660cb19fe4ff06d7ec32812e53f730674679 /native/src/widget.rs | |
parent | 2e6d90f141217bad83eacd392562c13d7485881f (diff) | |
download | iced-bb4161c1aec0a2a76de39ff2e5ed65f7acbad471.tar.gz iced-bb4161c1aec0a2a76de39ff2e5ed65f7acbad471.tar.bz2 iced-bb4161c1aec0a2a76de39ff2e5ed65f7acbad471.zip |
Split vertical orientation into VerticalSlider
Diffstat (limited to '')
-rw-r--r-- | native/src/widget.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/native/src/widget.rs b/native/src/widget.rs index a4b46ed4..efe26fc7 100644 --- a/native/src/widget.rs +++ b/native/src/widget.rs @@ -33,6 +33,7 @@ pub mod text_input; pub mod toggler; pub mod tooltip; pub mod tree; +pub mod vertical_slider; mod action; mod id; @@ -79,6 +80,8 @@ pub use toggler::Toggler; pub use tooltip::Tooltip; #[doc(no_inline)] pub use tree::Tree; +#[doc(no_inline)] +pub use vertical_slider::VerticalSlider; pub use action::Action; pub use id::Id; |