From bb6eb2cb70d099ded380a77bc0364490326bb271 Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Wed, 22 Oct 2025 18:38:25 +0200 Subject: Fix transform issues in lettering along path (#3972) * lettering along path: transform corrections * stop transform baking at glyph groups to keep clips in the correct position --- lib/lettering/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/lettering') diff --git a/lib/lettering/utils.py b/lib/lettering/utils.py index 0c649fa0..4c9822ea 100644 --- a/lib/lettering/utils.py +++ b/lib/lettering/utils.py @@ -38,7 +38,7 @@ def get_font_paths(): return font_paths -def get_font_by_id(font_id): +def get_font_by_id(font_id, show_font_path_warning=True): font_paths = get_font_paths() for font_path in font_paths: try: @@ -46,7 +46,7 @@ def get_font_by_id(font_id): except OSError: continue for font_dir in font_dirs: - font = _get_font_from_path(font_path, font_dir) + font = _get_font_from_path(font_path, font_dir, show_font_path_warning) if font and font_id in [font.id, font.marked_custom_font_id]: return font return None -- cgit v1.2.3