From 2d0340cefd1568ec3c8c903e280183e90468e4ab Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Sun, 26 Oct 2025 14:18:48 -0700 Subject: [PATCH] ui: stop loading unused fonts (#36493) Co-authored-by: Comma Device --- system/ui/lib/application.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/system/ui/lib/application.py b/system/ui/lib/application.py index 4d0ae5fa49..39f27ea1a4 100644 --- a/system/ui/lib/application.py +++ b/system/ui/lib/application.py @@ -43,15 +43,11 @@ FONT_DIR = ASSETS_DIR.joinpath("fonts") class FontWeight(StrEnum): - THIN = "Inter-Thin.fnt" - EXTRA_LIGHT = "Inter-ExtraLight.fnt" LIGHT = "Inter-Light.fnt" NORMAL = "Inter-Regular.fnt" MEDIUM = "Inter-Medium.fnt" SEMI_BOLD = "Inter-SemiBold.fnt" BOLD = "Inter-Bold.fnt" - EXTRA_BOLD = "Inter-ExtraBold.fnt" - BLACK = "Inter-Black.fnt" UNIFONT = "unifont.fnt"