diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2024-02-01 19:17:49 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-01 19:17:49 +0100 |
| commit | 78beb13ef0eedda1912f2179b42e27a2a844b186 (patch) | |
| tree | a43f6a059533c98f4be285f29bfce217d99a9797 | |
| parent | 74e9ba6600ea5d7db6bee50f18a465425632a2e1 (diff) | |
do not filter small segments for linear gradient graph (#2707)
| -rw-r--r-- | lib/stitches/linear_gradient_fill.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stitches/linear_gradient_fill.py b/lib/stitches/linear_gradient_fill.py index 47dcba2e..c1f0fb46 100644 --- a/lib/stitches/linear_gradient_fill.py +++ b/lib/stitches/linear_gradient_fill.py @@ -259,7 +259,7 @@ def _get_stitch_groups(fill, shape, colors, color_lines, starting_point, ending_ for i, color in enumerate(colors): lines = color_lines[color] - multiline = ensure_multi_line_string(MultiLineString(lines).intersection(shape), 1.5) + multiline = ensure_multi_line_string(MultiLineString(lines).intersection(shape)) if multiline.is_empty: continue |
