[Scummvm-git-logs] scummvm master -> dd5c527ef94597da71c63e8e19ce373a6d19519a

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:
dd5c527ef9 GUI: Exclude fonts-cjk from theme building


Commit: dd5c527ef94597da71c63e8e19ce373a6d19519a
    https://github.com/scummvm/scummvm/commit/dd5c527ef94597da71c63e8e19ce373a6d19519a
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2023-12-15T12:51:56+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