diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2025-07-11 22:14:52 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-11 22:14:52 +0200 |
| commit | 2235ec6571601e12be7eb3c74907668fb68bebd4 (patch) | |
| tree | 61d85cb615a1b2327283e89f09592e1eb85ad91c /lib/marker.py | |
| parent | 7bd72274780ccaeae8bbae6e761341079df21ecb (diff) | |
Fix issue with bad color names (#3816)
* fix issue with bad color names and define element colors at one place and reuse
* fix bad tartan color
* verify color in gradient block
* add thread color tests
* use default color behavior for elements linked to non-existing definitions (gradients)
* Added mypy change for tests (authored by: CapellanCitizen)
Diffstat (limited to 'lib/marker.py')
| -rw-r--r-- | lib/marker.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/marker.py b/lib/marker.py index a2b0965a..cd700674 100644 --- a/lib/marker.py +++ b/lib/marker.py @@ -72,8 +72,8 @@ def get_marker_elements(node, marker, get_fills=True, get_strokes=True, get_sati continue element = EmbroideryElement(marker) - fill = element.get_style('fill') - stroke = element.get_style('stroke') + fill = element.fill_color + stroke = element.stroke_color if get_fills and fill is not None: fill = FillStitch(marker).shape |
