summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--native/src/lib.rs4
-rw-r--r--src/lib.rs4
2 files changed, 4 insertions, 4 deletions
diff --git a/native/src/lib.rs b/native/src/lib.rs
index 13173901..02269265 100644
--- a/native/src/lib.rs
+++ b/native/src/lib.rs
@@ -80,8 +80,8 @@ mod debug;
pub use iced_core::alignment;
pub use iced_core::time;
pub use iced_core::{
- Alignment, Background, Color, ContentFit, Font, Length, Padding, Point,
- Rectangle, Size, Vector,
+ color, Alignment, Background, Color, ContentFit, Font, Length, Padding,
+ Point, Rectangle, Size, Vector,
};
pub use iced_futures::{executor, futures};
pub use iced_style::application;
diff --git a/src/lib.rs b/src/lib.rs
index 4276f86a..8209952f 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -211,8 +211,8 @@ pub use theme::Theme;
pub use runtime::alignment;
pub use runtime::futures;
pub use runtime::{
- Alignment, Background, Color, Command, ContentFit, Font, Length, Padding,
- Point, Rectangle, Size, Vector,
+ color, Alignment, Background, Color, Command, ContentFit, Font, Length,
+ Padding, Point, Rectangle, Size, Vector,
};
#[cfg(feature = "system")]