summaryrefslogtreecommitdiff
path: root/lib/debug.py
diff options
context:
space:
mode:
authorLex Neva <lexelby@users.noreply.github.com>2022-06-22 10:11:12 -0400
committerGitHub <noreply@github.com>2022-06-22 16:11:12 +0200
commitffd770cbbd36caf14cac3891304d14a3bf348605 (patch)
tree4ec4215b81a9b38258d60836f27ae1bc8ab4f25a /lib/debug.py
parente884fb78db288c91e8183ef8e242840ba5d68db2 (diff)
guided fill stagger (#1700)
Diffstat (limited to 'lib/debug.py')
-rw-r--r--lib/debug.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/debug.py b/lib/debug.py
index f47d09ec..83dd1766 100644
--- a/lib/debug.py
+++ b/lib/debug.py
@@ -158,7 +158,7 @@ class Debug(object):
@check_enabled
def log_line_strings(self, line_strings, name=None, color=None):
path = line_strings_to_path(line_strings)
- path.set('style', str(inkex.Style({"stroke": color or "#000000", "stroke-width": "0.3"})))
+ path.set('style', str(inkex.Style({"stroke": color or "#000000", "stroke-width": "0.3", "fill": None})))
if name is not None:
path.set(INKSCAPE_LABEL, name)
@@ -169,7 +169,7 @@ class Debug(object):
def log_line(self, start, end, name="line", color=None):
self.log_svg_element(etree.Element("path", {
"d": "M%s,%s %s,%s" % (start + end),
- "style": str(inkex.Style({"stroke": color or "#000000", "stroke-width": "0.3"})),
+ "style": str(inkex.Style({"stroke": color or "#000000", "stroke-width": "0.3", "fill": None})),
INKSCAPE_LABEL: name
}))
@@ -182,7 +182,7 @@ class Debug(object):
self.log_svg_element(etree.Element("path", {
"d": d,
- "style": str(inkex.Style({"stroke": color or "#000000", "stroke-width": "0.3"})),
+ "style": str(inkex.Style({"stroke": color or "#000000", "stroke-width": "0.3", "fill": None})),
INKSCAPE_LABEL: name
}))