diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2023-11-22 20:55:58 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-22 20:55:58 +0100 |
| commit | 3bd92265b21d779c41377d2a06d13abaf628fe34 (patch) | |
| tree | 276372bf131626f127045ce826bb8df25d89cb8d /lib/stitches/guided_fill.py | |
| parent | 0b12922d3f058f07020e6afdca26ad34e40918db (diff) | |
Add linear gradient fill (#2587)
Diffstat (limited to 'lib/stitches/guided_fill.py')
| -rw-r--r-- | lib/stitches/guided_fill.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stitches/guided_fill.py b/lib/stitches/guided_fill.py index 67ad4ccd..762515f6 100644 --- a/lib/stitches/guided_fill.py +++ b/lib/stitches/guided_fill.py @@ -39,7 +39,7 @@ def guided_fill(shape, fill_stitch_graph = build_fill_stitch_graph(shape, segments, starting_point, ending_point) - if not graph_is_valid(fill_stitch_graph, shape, max_stitch_length): + if not graph_is_valid(fill_stitch_graph): return fallback(shape, guideline, row_spacing, max_stitch_length, running_stitch_length, running_stitch_tolerance, num_staggers, skip_last, starting_point, ending_point, underpath) |
