diff options
author | 2019-11-14 06:47:43 +0100 | |
---|---|---|
committer | 2019-11-14 06:47:43 +0100 | |
commit | a16dab9cf2e27cb933cc91383ca79ba8e188c4c2 (patch) | |
tree | db844c70cc8fbd2f48b175e97bde50866641a1b4 /core/src/lib.rs | |
parent | bc8d347736ec997ec0e0c401289e2bc09e212b8a (diff) | |
parent | 6857829dc3171fd68065498b6cd29f0ef02a8d43 (diff) | |
download | iced-a16dab9cf2e27cb933cc91383ca79ba8e188c4c2.tar.gz iced-a16dab9cf2e27cb933cc91383ca79ba8e188c4c2.tar.bz2 iced-a16dab9cf2e27cb933cc91383ca79ba8e188c4c2.zip |
Merge pull request #54 from hecrj/feature/external-fonts
Custom font support
Diffstat (limited to 'core/src/lib.rs')
-rw-r--r-- | core/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/src/lib.rs b/core/src/lib.rs index ab43ab94..b61f2eae 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs @@ -3,6 +3,7 @@ pub mod widget; mod align; mod background; mod color; +mod font; mod length; mod point; mod rectangle; @@ -11,6 +12,7 @@ mod vector; pub use align::Align; pub use background::Background; pub use color::Color; +pub use font::Font; pub use length::Length; pub use point::Point; pub use rectangle::Rectangle; |