summaryrefslogtreecommitdiffstats
path: root/native/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-02-14 05:35:42 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-02-14 05:35:42 +0100
commit945dfabd7135d1bd44a14e54d95b716642651ed3 (patch)
treed33e2e5eefcbd62c84f9e352574fb9ca52d07b19 /native/src/lib.rs
parentad3a0a184f877cbca3db4006e802231e201138ba (diff)
downloadiced-945dfabd7135d1bd44a14e54d95b716642651ed3.tar.gz
iced-945dfabd7135d1bd44a14e54d95b716642651ed3.tar.bz2
iced-945dfabd7135d1bd44a14e54d95b716642651ed3.zip
Move `Size` to `iced_core`
Diffstat (limited to 'native/src/lib.rs')
-rw-r--r--native/src/lib.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/native/src/lib.rs b/native/src/lib.rs
index 3b81ef71..e4e7baee 100644
--- a/native/src/lib.rs
+++ b/native/src/lib.rs
@@ -52,12 +52,11 @@ mod event;
mod hasher;
mod mouse_cursor;
mod runtime;
-mod size;
mod user_interface;
pub use iced_core::{
Align, Background, Color, Font, HorizontalAlignment, Length, Point,
- Rectangle, Vector, VerticalAlignment,
+ Rectangle, Size, Vector, VerticalAlignment,
};
pub use iced_futures::{executor, futures, Command};
@@ -72,7 +71,6 @@ pub use layout::Layout;
pub use mouse_cursor::MouseCursor;
pub use renderer::Renderer;
pub use runtime::Runtime;
-pub use size::Size;
pub use subscription::Subscription;
pub use user_interface::{Cache, UserInterface};
pub use widget::*;