page layout tool
git clone https://git.lucas.co/cce-layout-interface.git
refactor: create FontSystem via cce_ui::create_font_system_with_system_fonts
Use the shared cce_ui helper (system + bundled CCE fonts) instead of a bare
glyphon::FontSystem::new(). For the five apps that used FontSystem::new() this
additionally loads the bundled CCE fonts; the two hybrids drop their manual
load_fonts_dir call. Additive — no font source is lost.
Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]>
src/main.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main.rs b/src/main.rs
index ecedff3..1084725 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -2753,7 +2753,7 @@ impl Application for LayoutApp {
height: 768,
scale_factor: 1.0,
text_items: Vec::new(),
- font_system: FontSystem::new(),
+ font_system: cce_ui::create_font_system_with_system_fonts(),
needs_rebuild: true,
dropdown_presets,