[Scummvm-git-logs] scummvm branch-2-8 -> 13aab043208425095a31abc7c413dacb701d7f15

sev- noreply at scummvm.org
Fri Dec 15 11:52:08 UTC 2023


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
13aab04320 GUI: Exclude fonts-cjk from theme building


Commit: 13aab043208425095a31abc7c413dacb701d7f15
    https://github.com/scummvm/scummvm/commit/13aab043208425095a31abc7c413dacb701d7f15
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2023-12-15T12:51:40+01:00

Commit Message:
GUI: Exclude fonts-cjk from theme building

Changed paths:
    gui/themes/scummtheme.py


diff --git a/gui/themes/scummtheme.py b/gui/themes/scummtheme.py
index 2f8322b2141..d5fb8787c5e 100755
--- a/gui/themes/scummtheme.py
+++ b/gui/themes/scummtheme.py
@@ -50,7 +50,7 @@ def buildTheme(themeName):
 
 def buildAllThemes():
 	for f in os.listdir('.'):
-		if os.path.isdir(os.path.join('.', f)) and not f[0] == '.' and not f.startswith("common") and not f == "fonts":
+		if os.path.isdir(os.path.join('.', f)) and not f[0] == '.' and not f.startswith("common") and not f == "fonts" and not f == "fonts-cjk":
 			buildTheme(f)
 
 def parseSTX(theme_file, def_file, subcount):




More information about the Scummvm-git-logs mailing list