summaryrefslogtreecommitdiff
path: root/lib/extensions
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2018-07-04 21:54:23 -0400
committerLex Neva <github.com@lexneva.name>2018-07-12 20:13:46 -0400
commit1c5e4fbf73e673a12d67d27a1f0e88c2265c762f (patch)
tree682c90084667230d29aab906d67bbf99c5d1a1da /lib/extensions
parent3de394e14b00ac2653084f534149db418bd6cebd (diff)
set fill to none for connectors
Diffstat (limited to 'lib/extensions')
-rw-r--r--lib/extensions/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/extensions/commands.py b/lib/extensions/commands.py
index 26ced110..aeda2cc2 100644
--- a/lib/extensions/commands.py
+++ b/lib/extensions/commands.py
@@ -72,7 +72,7 @@ class Commands(InkstitchExtension):
{
"id": self.uniqueId("connector"),
"d": "M %s,%s %s,%s" % (start_pos[0], start_pos[1], end_pos.x, end_pos.y),
- "style": "stroke:#000000;stroke-width:1px;",
+ "style": "stroke:#000000;stroke-width:1px;fill:none;",
"transform": self.get_correction_transform(symbol),
CONNECTION_START: "#%s" % symbol.get('id'),
CONNECTION_END: "#%s" % element.node.get('id'),