summaryrefslogtreecommitdiffstats
path: root/src/sp-text.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2016-03-19 20:10:36 +0000
committerJabiertxof <jtx@jtx.marker.es>2016-03-19 20:10:36 +0000
commit968cf01eb9a0b5248a91a697c502383e8dd7b00d (patch)
tree63eaa397c29b2a562c585b1e924feb7c8e0f2329 /src/sp-text.cpp
parentStart fixing Krzysztof review (diff)
parentMerge lp:~inkscape.dev/inkscape/copy-rotate-lpe-improvements (diff)
downloadinkscape-968cf01eb9a0b5248a91a697c502383e8dd7b00d.tar.gz
inkscape-968cf01eb9a0b5248a91a697c502383e8dd7b00d.zip
update to trunk
(bzr r13682.1.35)
Diffstat (limited to 'src/sp-text.cpp')
-rw-r--r--src/sp-text.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sp-text.cpp b/src/sp-text.cpp
index 4a5b1b1d6..7d4348d19 100644
--- a/src/sp-text.cpp
+++ b/src/sp-text.cpp
@@ -819,8 +819,8 @@ void TextTagAttributes::setFirstXY(Geom::Point &point)
attributes.x.resize(1, zero_length);
if (attributes.y.empty())
attributes.y.resize(1, zero_length);
- attributes.x[0].computed = point[Geom::X];
- attributes.y[0].computed = point[Geom::Y];
+ attributes.x[0] = point[Geom::X];
+ attributes.y[0] = point[Geom::Y];
}
void TextTagAttributes::mergeInto(Inkscape::Text::Layout::OptionalTextTagAttrs *output, Inkscape::Text::Layout::OptionalTextTagAttrs const &parent_attrs, unsigned parent_attrs_offset, bool copy_xy, bool copy_dxdyrotate) const