diff options
author | 2019-11-13 07:22:21 +0100 | |
---|---|---|
committer | 2019-11-13 07:22:21 +0100 | |
commit | 6857829dc3171fd68065498b6cd29f0ef02a8d43 (patch) | |
tree | db844c70cc8fbd2f48b175e97bde50866641a1b4 /native | |
parent | f0b1e65ba4f8df173f8201585a1d81245e93ab94 (diff) | |
download | iced-6857829dc3171fd68065498b6cd29f0ef02a8d43.tar.gz iced-6857829dc3171fd68065498b6cd29f0ef02a8d43.tar.bz2 iced-6857829dc3171fd68065498b6cd29f0ef02a8d43.zip |
Draft `Font` type and implement `Text::font`
Diffstat (limited to 'native')
-rw-r--r-- | native/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/native/src/lib.rs b/native/src/lib.rs index a091059e..7e55064c 100644 --- a/native/src/lib.rs +++ b/native/src/lib.rs @@ -216,7 +216,7 @@ mod size; mod user_interface; pub use iced_core::{ - Align, Background, Color, Length, Point, Rectangle, Vector, + Align, Background, Color, Font, Length, Point, Rectangle, Vector, }; pub use element::Element; |