summaryrefslogtreecommitdiff
path: root/lib/elements/fill.py
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2020-05-16 23:12:06 +0200
committerGitHub <noreply@github.com>2020-05-16 23:12:06 +0200
commite03b032f85e7f084cbc1cccf6a4b8814f40c3022 (patch)
tree2b739d75de24c19c0490bbf454dabc282829ca10 /lib/elements/fill.py
parenta308db7ae152626c84ade069e307864a7e7e6213 (diff)
break apart loops (#690)
Diffstat (limited to 'lib/elements/fill.py')
-rw-r--r--lib/elements/fill.py12
1 files changed, 2 insertions, 10 deletions
diff --git a/lib/elements/fill.py b/lib/elements/fill.py
index 59b7414b..923bf726 100644
--- a/lib/elements/fill.py
+++ b/lib/elements/fill.py
@@ -19,7 +19,7 @@ class UnconnectedError(ValidationError):
"Ink/Stitch doesn't know what order to stitch them in. Please break this "
"object up into separate shapes.")
steps_to_solve = [
- _('* Extensions > Ink/Stitch > Fill Tools > Break Apart and Retain Holes.')
+ _('* Extensions > Ink/Stitch > Fill Tools > Break Apart Fill Objects'),
]
@@ -27,15 +27,7 @@ class InvalidShapeError(ValidationError):
name = _("Border crosses itself")
description = _("Fill: Shape is not valid. This can happen if the border crosses over itself.")
steps_to_solve = [
- _("1. Inkscape has a limit to how far it lets you zoom in. Sometimes there can be a little loop, "
- "that's so small, you can't see it, but Ink/Stitch can. It's especially common for Inkscape's "
- "Trace Bitmap to produce those tiny loops."),
- _("* Delete the node"),
- _("* Or try to adjust it's handles"),
- _("2. If you can actually see a loop, run the following commands to seperate the crossing shapes:"),
- _("* Path > Union (Ctrl++)"),
- _("* Path > Break apart (Shift+Ctrl+K)"),
- _("* (Optional) Recombine shapes with holes (Ctrl+K).")
+ _('* Extensions > Ink/Stitch > Fill Tools > Break Apart Fill Objects')
]