summaryrefslogtreecommitdiff
path: root/lib/extensions/base.py
diff options
context:
space:
mode:
authorGeorge Steel <george.steel@gmail.com>2023-01-08 18:33:02 -0500
committerGitHub <noreply@github.com>2023-01-08 18:33:02 -0500
commitfbf57b92d2f37814e0029a1e5b8b413f76697463 (patch)
treea5c302b6e093edbca4c20b18ebd9b14dea29da11 /lib/extensions/base.py
parenta7b2122d91703d72177cf980cecbef8fca3d54ec (diff)
parent8d13e09bc41f9cfeaa0cd32cd75fa4da07afc03c (diff)
Merge pull request #1918 from inkstitch/george-steel/random-base-satin
Add randomization options to satin columns and rewrite split stitches
Diffstat (limited to 'lib/extensions/base.py')
-rw-r--r--lib/extensions/base.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/extensions/base.py b/lib/extensions/base.py
index cf94714c..c2f76b27 100644
--- a/lib/extensions/base.py
+++ b/lib/extensions/base.py
@@ -179,6 +179,8 @@ class InkstitchExtension(inkex.Effect):
return nodes
def get_nodes(self, troubleshoot=False):
+ # Postorder traversal of selected nodes and their descendants.
+ # Returns all nodes if there is no selection.
return self.descendants(self.document.getroot(), troubleshoot=troubleshoot)
def get_elements(self, troubleshoot=False):