summaryrefslogtreecommitdiff
path: root/lib/elements/pattern.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/elements/pattern.py')
-rw-r--r--lib/elements/pattern.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/elements/pattern.py b/lib/elements/pattern.py
index fa54b7ba..98f29456 100644
--- a/lib/elements/pattern.py
+++ b/lib/elements/pattern.py
@@ -6,7 +6,6 @@
import inkex
from ..i18n import _
-from ..svg.tags import EMBROIDERABLE_TAGS
from .element import EmbroideryElement
from .validation import ObjectTypeWarning
@@ -31,9 +30,3 @@ class PatternObject(EmbroideryElement):
def to_patches(self, last_patch):
return []
-
-
-def is_pattern(node):
- if node.tag not in EMBROIDERABLE_TAGS:
- return False
- return "marker-start:url(#inkstitch-pattern-marker)" in node.get('style', '')