summaryrefslogtreecommitdiff
path: root/lib/elements/validation.py
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2020-05-16 23:01:00 +0200
committerGitHub <noreply@github.com>2020-05-16 23:01:00 +0200
commita308db7ae152626c84ade069e307864a7e7e6213 (patch)
tree3af8a13562021796743378d16a1e7cc725ac75e4 /lib/elements/validation.py
parent4e950332419743dcbaf661fdda1f7c7970241d93 (diff)
support svg objects (#643)
Diffstat (limited to 'lib/elements/validation.py')
-rw-r--r--lib/elements/validation.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/elements/validation.py b/lib/elements/validation.py
index 41098922..f77e2fc4 100644
--- a/lib/elements/validation.py
+++ b/lib/elements/validation.py
@@ -39,3 +39,13 @@ class ValidationWarning(ValidationMessage):
don't, Ink/Stitch will do its best to process the object.
"""
pass
+
+
+class ObjectTypeWarning(ValidationMessage):
+ """A shape is not a path and will not be embroidered.
+
+ Ink/Stitch only works with paths and ignores everything else.
+ The user might want the shape to be ignored, but if they
+ don't, they receive information how to change this behaviour.
+ """
+ pass