diff options
author | 2020-04-01 00:25:08 +0200 | |
---|---|---|
committer | 2020-04-02 03:44:14 +0200 | |
commit | c73f23c38057a4b1af368da5ac3268de317a55fa (patch) | |
tree | 8682e099672d28251cf0e41250cba9be96562779 /src | |
parent | 4979635764da0ffefdfa7f9ff5070b23429d2e92 (diff) | |
download | iced-c73f23c38057a4b1af368da5ac3268de317a55fa.tar.gz iced-c73f23c38057a4b1af368da5ac3268de317a55fa.tar.bz2 iced-c73f23c38057a4b1af368da5ac3268de317a55fa.zip |
Move `Space` to `widget` module
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 2 | ||||
-rw-r--r-- | src/widget.rs | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -205,5 +205,5 @@ use iced_web as common; pub use common::{ futures, Align, Background, Color, Command, Font, HorizontalAlignment, - Length, Point, Size, Space, Subscription, Vector, VerticalAlignment, + Length, Point, Size, Subscription, Vector, VerticalAlignment, }; diff --git a/src/widget.rs b/src/widget.rs index 91ea1ed4..d8317091 100644 --- a/src/widget.rs +++ b/src/widget.rs @@ -30,7 +30,7 @@ mod platform { pub use iced_winit::svg::{Handle, Svg}; } - pub use iced_winit::Text; + pub use iced_winit::{Space, Text}; #[doc(no_inline)] pub use { |