diff options
author | 2023-02-05 18:26:09 +0100 | |
---|---|---|
committer | 2023-02-24 13:36:02 +0100 | |
commit | 32309f0140efb4ea92e3e35e3adc5c740909f196 (patch) | |
tree | 64a388d896c4ae1959b492fb742d3c6eaec10cc6 /core/src/lib.rs | |
parent | eb3cd3a321db48a4a4555575f022e9a0ed85063b (diff) | |
download | iced-32309f0140efb4ea92e3e35e3adc5c740909f196.tar.gz iced-32309f0140efb4ea92e3e35e3adc5c740909f196.tar.bz2 iced-32309f0140efb4ea92e3e35e3adc5c740909f196.zip |
Introduce `Weight` enum to `font`
Diffstat (limited to 'core/src/lib.rs')
-rw-r--r-- | core/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/lib.rs b/core/src/lib.rs index d3596b4d..d7314851 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs @@ -25,6 +25,7 @@ #![forbid(unsafe_code, rust_2018_idioms)] #![allow(clippy::inherent_to_string, clippy::type_complexity)] pub mod alignment; +pub mod font; pub mod keyboard; pub mod mouse; pub mod time; @@ -32,7 +33,6 @@ pub mod time; mod background; mod color; mod content_fit; -mod font; mod length; mod padding; mod pixels; |