diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2025-04-27 21:20:55 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-27 21:20:55 +0200 |
| commit | 41975b1f6a6e88a8737d8989b2ac12b71f750b59 (patch) | |
| tree | d97a2c9112703909e77597f3be31b5644304676e /lib/lettering | |
| parent | 3b47c180fd334a64805a49fe7580709d04f6242c (diff) | |
fix zerodivision error in zigzag to satin (#3696)
Diffstat (limited to 'lib/lettering')
| -rw-r--r-- | lib/lettering/font.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/lettering/font.py b/lib/lettering/font.py index 50fb804f..f7744eff 100644 --- a/lib/lettering/font.py +++ b/lib/lettering/font.py @@ -16,13 +16,12 @@ from ..elements import SatinColumn, Stroke, nodes_to_elements from ..exceptions import InkstitchException from ..extensions.lettering_custom_font_dir import get_custom_font_dir from ..i18n import _, get_languages -from ..marker import (MARKER, ensure_marker_symbols, has_marker, - is_grouped_with_marker) +from ..marker import ensure_marker_symbols, has_marker, is_grouped_with_marker from ..stitches.auto_satin import auto_satin from ..svg.clip import get_clips from ..svg.tags import (CONNECTION_END, CONNECTION_START, EMBROIDERABLE_TAGS, INKSCAPE_LABEL, INKSTITCH_ATTRIBS, SVG_GROUP_TAG, - SVG_PATH_TAG, SVG_USE_TAG, XLINK_HREF) + SVG_PATH_TAG) from ..utils import Point from .font_variant import FontVariant |
