diff options
| author | Nicolas Dufour <nicoduf@yahoo.fr> | 2009-08-10 20:55:57 +0000 |
|---|---|---|
| committer | JazzyNico <JazzyNico@users.sourceforge.net> | 2009-08-10 20:55:57 +0000 |
| commit | cf75172a48f415ca8a14f72621bd46836d409acd (patch) | |
| tree | b216f25f30f4798968c700c210983fe622564176 | |
| parent | Update Khmer translation (diff) | |
| download | inkscape-cf75172a48f415ca8a14f72621bd46836d409acd.tar.gz inkscape-cf75172a48f415ca8a14f72621bd46836d409acd.zip | |
Fix for bug LP #308183 (Measure Path text shifted when used with a copied object).
(bzr r8463)
| -rw-r--r-- | share/extensions/measure.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/share/extensions/measure.py b/share/extensions/measure.py index 453773649..8eacd40c6 100644 --- a/share/extensions/measure.py +++ b/share/extensions/measure.py @@ -116,8 +116,10 @@ class Length(inkex.Effect): self.group = inkex.etree.SubElement(node.getparent(),inkex.addNS('text','svg')) t = node.get('transform') - if t: - self.group.set('transform', t) + # Removed to fix LP #308183 + # (Measure Path text shifted when used with a copied object) + #if t: + # self.group.set('transform', t) a =[] |
