diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2025-01-12 10:35:11 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-12 10:35:11 +0100 |
| commit | 4309f82fab00a738c518b34e12ac4f02195f7f22 (patch) | |
| tree | db737462dd8119bcb2ce3df79b87b7ed4de1e6d1 /lib/lettering/font.py | |
| parent | c7eaf49c5e75f0106c41878c2b87586e68a5eb5a (diff) | |
lettering: fix error in process trims (#3431)
Diffstat (limited to 'lib/lettering/font.py')
| -rw-r--r-- | lib/lettering/font.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lettering/font.py b/lib/lettering/font.py index 9f4d335a..8d2a0c4b 100644 --- a/lib/lettering/font.py +++ b/lib/lettering/font.py @@ -479,7 +479,7 @@ class Font(object): if not has_marker(path_child): path = path_child element = Stroke(path) - self._add_trim_to_element(element, use_trim_symbols) + self._add_trim_to_element(element, use_trim_symbols) def _add_trim_to_element(self, element, use_trim_symbols): if element.shape: |
