diff options
| author | Aaron Spike <aaron@ekips.org> | 2007-06-26 02:41:30 +0000 |
|---|---|---|
| committer | acspike <acspike@users.sourceforge.net> | 2007-06-26 02:41:30 +0000 |
| commit | c0533ca94cc68fb8b91387a8b4e552ea334e670d (patch) | |
| tree | c7055680a4523a38095ef7f58f691d3fddc33e2e /share/extensions/pathalongpath.py | |
| parent | fix 1721790 (diff) | |
| download | inkscape-c0533ca94cc68fb8b91387a8b4e552ea334e670d.tar.gz inkscape-c0533ca94cc68fb8b91387a8b4e552ea334e670d.zip | |
fix effect to work after the lxml conversion
(bzr r3106)
Diffstat (limited to 'share/extensions/pathalongpath.py')
| -rw-r--r-- | share/extensions/pathalongpath.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/extensions/pathalongpath.py b/share/extensions/pathalongpath.py index 3901069c9..e49aadeb4 100644 --- a/share/extensions/pathalongpath.py +++ b/share/extensions/pathalongpath.py @@ -212,7 +212,7 @@ class PathAlongPath(pathmodifier.Diffeo): dx=width+self.options.space
for id, node in self.patterns.iteritems():
- if node.tag == inkex.addNS('path','svg'):
+ if node.tag == inkex.addNS('path','svg') or node.tag=='path':
d = node.get('d')
p0 = cubicsuperpath.parsePath(d)
if self.options.vertical:
|
