summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2025-04-15 20:47:20 +0200
committerGitHub <noreply@github.com>2025-04-15 20:47:20 +0200
commit56fbbc2ffb44fa189289e5510644287cb1f71609 (patch)
treedf14d6cbd99c71c905d2b9eb14f82f0ccf23c0f4
parenta1d49d6b7b604dc1f9b39344ca5b474cde9e5bee (diff)
avoid missing json warning on hidden dir also for batch lettering (#3673)
-rw-r--r--lib/lettering/utils.py22
1 files changed, 12 insertions, 10 deletions
diff --git a/lib/lettering/utils.py b/lib/lettering/utils.py
index 695f9d08..bd7a208d 100644
--- a/lib/lettering/utils.py
+++ b/lib/lettering/utils.py
@@ -21,10 +21,8 @@ def get_font_list():
continue
for font_dir in font_dirs:
- if not os.path.isdir(os.path.join(font_path, font_dir)) or font_dir.startswith('.'):
- continue
- font = Font(os.path.join(font_path, font_dir))
- if font.marked_custom_font_name == "" or font.marked_custom_font_id == "":
+ font = _get_font_from_path(font_path, font_dir)
+ if not font or font.marked_custom_font_name == "" or font.marked_custom_font_id == "":
continue
fonts.append(font)
return fonts
@@ -48,10 +46,8 @@ def get_font_by_id(font_id):
except OSError:
continue
for font_dir in font_dirs:
- if not os.path.isdir(os.path.join(font_path, font_dir)) or font_dir.startswith('.'):
- continue
- font = Font(os.path.join(font_path, font_dir))
- if font.id == font_id:
+ font = _get_font_from_path(font_path, font_dir)
+ if font and font.id == font_id:
return font
return None
@@ -64,7 +60,13 @@ def get_font_by_name(font_name):
except OSError:
continue
for font_dir in font_dirs:
- font = Font(os.path.join(font_path, font_dir))
- if font.name == font_name:
+ font = _get_font_from_path(font_path, font_dir)
+ if font and font.name == font_name:
return font
return None
+
+
+def _get_font_from_path(font_path, font_dir):
+ if not os.path.isdir(os.path.join(font_path, font_dir)) or font_dir.startswith('.'):
+ return
+ return Font(os.path.join(font_path, font_dir))