git.lucas.co / cce-layout-interface
page layout tool
git clone https://git.lucas.co/cce-layout-interface.git

commitb8bb1c02cb47e7ee3630ed3844bf5987c5c1cdd4
parentdbb4023b5a
authorLucas Galante <[email protected]>
date2026-07-07 10:23
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,