diff options
author | 2020-08-22 21:25:06 +0200 | |
---|---|---|
committer | 2020-08-22 21:25:06 +0200 | |
commit | 2ce5df084456a92ed1a228738816cf8398b2e918 (patch) | |
tree | 57eae346361880dc9dbbc15a42a56e001e20c5ff /glow/src/widget.rs | |
parent | bbc6e91429ff94c3792de9d874999818b2c84a9b (diff) | |
parent | fed30ef7753bbe33af026f1f46a09d8381682284 (diff) | |
download | iced-2ce5df084456a92ed1a228738816cf8398b2e918.tar.gz iced-2ce5df084456a92ed1a228738816cf8398b2e918.tar.bz2 iced-2ce5df084456a92ed1a228738816cf8398b2e918.zip |
Merge branch 'feature/rule-widget' into master
Diffstat (limited to 'glow/src/widget.rs')
-rw-r--r-- | glow/src/widget.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/glow/src/widget.rs b/glow/src/widget.rs index 4e2fedc5..0e33909d 100644 --- a/glow/src/widget.rs +++ b/glow/src/widget.rs @@ -16,6 +16,7 @@ pub mod pane_grid; pub mod pick_list; pub mod progress_bar; pub mod radio; +pub mod rule; pub mod scrollable; pub mod slider; pub mod text_input; @@ -35,6 +36,8 @@ pub use progress_bar::ProgressBar; #[doc(no_inline)] pub use radio::Radio; #[doc(no_inline)] +pub use rule::Rule; +#[doc(no_inline)] pub use scrollable::Scrollable; #[doc(no_inline)] pub use slider::Slider; |