diff options
author | 2019-12-30 21:32:21 +0100 | |
---|---|---|
committer | 2019-12-30 21:33:27 +0100 | |
commit | 3a327e08e96d9588d145c32afe4f04f37a8f0f0f (patch) | |
tree | b1da004410c0dc4ba82bd0c3262ea3359fad38b2 /native/src/widget.rs | |
parent | 8426bf953cb50f3b7fcb1e0ec8c2fdf22d2b01af (diff) | |
download | iced-3a327e08e96d9588d145c32afe4f04f37a8f0f0f.tar.gz iced-3a327e08e96d9588d145c32afe4f04f37a8f0f0f.tar.bz2 iced-3a327e08e96d9588d145c32afe4f04f37a8f0f0f.zip |
Rename `Empty` widget to `Space`
Diffstat (limited to 'native/src/widget.rs')
-rw-r--r-- | native/src/widget.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/native/src/widget.rs b/native/src/widget.rs index b73f229e..dcc99645 100644 --- a/native/src/widget.rs +++ b/native/src/widget.rs @@ -24,12 +24,12 @@ pub mod button; pub mod checkbox; pub mod column; pub mod container; -pub mod empty; pub mod image; pub mod radio; pub mod row; pub mod scrollable; pub mod slider; +pub mod space; pub mod svg; pub mod text; pub mod text_input; @@ -43,8 +43,6 @@ pub use column::Column; #[doc(no_inline)] pub use container::Container; #[doc(no_inline)] -pub use empty::Empty; -#[doc(no_inline)] pub use image::Image; #[doc(no_inline)] pub use radio::Radio; @@ -55,6 +53,8 @@ pub use scrollable::Scrollable; #[doc(no_inline)] pub use slider::Slider; #[doc(no_inline)] +pub use space::Space; +#[doc(no_inline)] pub use svg::Svg; #[doc(no_inline)] pub use text::Text; |