diff options
| author | Alvin Penner <penner@vaxxine.com> | 2011-12-15 23:51:37 +0000 |
|---|---|---|
| committer | apenner <penner@vaxxine.com> | 2011-12-15 23:51:37 +0000 |
| commit | be28e5f236e8ce8605924a389c06480f599b0225 (patch) | |
| tree | ac3fc5ed0c034e45d49026a7f516dd458d2b8005 /share | |
| parent | Get rid of deprecated gtk_idle* (diff) | |
| download | inkscape-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-x | share/extensions/convert2dashes.py | 2 |
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() |
