summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorAlvin Penner <penner@vaxxine.com>2011-12-15 23:51:37 +0000
committerapenner <penner@vaxxine.com>2011-12-15 23:51:37 +0000
commitbe28e5f236e8ce8605924a389c06480f599b0225 (patch)
treeac3fc5ed0c034e45d49026a7f516dd458d2b8005 /share
parentGet rid of deprecated gtk_idle* (diff)
downloadinkscape-be28e5f236e8ce8605924a389c06480f599b0225.tar.gz
inkscape-be28e5f236e8ce8605924a389c06480f599b0225.zip
Extensions. convert2dashes. delete 'stroke-dasharray' attribute in style (Bug 888793)
Fixed bugs: - https://launchpad.net/bugs/888793 (bzr r10774)
Diffstat (limited to 'share')
-rwxr-xr-xshare/extensions/convert2dashes.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/share/extensions/convert2dashes.py b/share/extensions/convert2dashes.py
index f88734baf..ce818688c 100755
--- a/share/extensions/convert2dashes.py
+++ b/share/extensions/convert2dashes.py
@@ -80,6 +80,8 @@ class SplitIt(inkex.Effect):
new[-1].append(sub[i])
i+=1
node.set('d',cubicsuperpath.formatPath(new))
+ del style['stroke-dasharray']
+ node.set('style', simplestyle.formatStyle(style))
if __name__ == '__main__':
e = SplitIt()