diff options
| author | Lex Neva <github.com@lexneva.name> | 2023-02-05 22:33:38 -0500 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2023-02-16 22:56:16 -0500 |
| commit | f6c2aa89197c82cedfb31465fc4b2acffaeb8f25 (patch) | |
| tree | 1123050a6ba7428dbcc8b72bd074161bdb3e014f /lib/stitches/auto_satin.py | |
| parent | 62b7c0080c90d0cf44ee173db7d1f237e8df538e (diff) | |
add more check_stop_flag() calls
Diffstat (limited to 'lib/stitches/auto_satin.py')
| -rw-r--r-- | lib/stitches/auto_satin.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/stitches/auto_satin.py b/lib/stitches/auto_satin.py index 6d792b4e..228f1325 100644 --- a/lib/stitches/auto_satin.py +++ b/lib/stitches/auto_satin.py @@ -24,6 +24,7 @@ from .utils.autoroute import (add_elements_to_group, add_jumps, get_starting_and_ending_nodes, preserve_original_groups, remove_original_elements) +from ..utils.threading import check_stop_flag class SatinSegment(object): @@ -366,6 +367,8 @@ def build_graph(elements, preserve_order=False): # best spots for us. for element in elements: + check_stop_flag() + segments = [] if isinstance(element, Stroke): segments.append(RunningStitch(element)) |
