summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-12-12 03:14:40 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-12-12 03:15:32 +0100
commit6572909ab5b004176f6d261b67b4caa99f1f54bb (patch)
tree115e8a7d34df5f2089c2ac2fdbddf3f12381b29c /graphics
parent7683bd201f156c6e80309584a9bdc205810b0e2e (diff)
downloadiced-6572909ab5b004176f6d261b67b4caa99f1f54bb.tar.gz
iced-6572909ab5b004176f6d261b67b4caa99f1f54bb.tar.bz2
iced-6572909ab5b004176f6d261b67b4caa99f1f54bb.zip
Embed and use Fira Sans as default font when testing
Diffstat (limited to 'graphics')
-rw-r--r--graphics/src/text.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/src/text.rs b/graphics/src/text.rs
index feb9932a..e6f06b61 100644
--- a/graphics/src/text.rs
+++ b/graphics/src/text.rs
@@ -149,8 +149,8 @@ impl Text {
/// It is loaded as part of the default fonts in Wasm builds.
///
/// [Fira Sans]: https://mozilla.github.io/Fira/
-#[cfg(all(target_arch = "wasm32", feature = "fira-sans"))]
-pub const FIRA_SANS_REGULAR: &'static [u8] =
+#[cfg(feature = "fira-sans")]
+pub const FIRA_SANS_REGULAR: &[u8] =
include_bytes!("../fonts/FiraSans-Regular.ttf").as_slice();
/// Returns the global [`FontSystem`].
@@ -163,7 +163,7 @@ pub fn font_system() -> &'static RwLock<FontSystem> {
cosmic_text::fontdb::Source::Binary(Arc::new(
include_bytes!("../fonts/Iced-Icons.ttf").as_slice(),
)),
- #[cfg(all(target_arch = "wasm32", feature = "fira-sans"))]
+ #[cfg(feature = "fira-sans")]
cosmic_text::fontdb::Source::Binary(Arc::new(
include_bytes!("../fonts/FiraSans-Regular.ttf").as_slice(),
)),