GUI: Exclude fonts-cjk from theme building

This commit is contained in:
Eugene Sandulenko 2023-12-15 12:51:19 +01:00
parent 730c546c00
commit dd5c527ef9
No known key found for this signature in database
GPG Key ID: 014D387312D34F08

View File

@ -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):