diff options
| author | Jabier Arraiza Cenoz <jabier.arraiza@marker.es> | 2015-02-23 22:17:37 +0000 |
|---|---|---|
| committer | Jabiertxof <jtx@jtx.marker.es> | 2015-02-23 22:17:37 +0000 |
| commit | ed54c75dc7f31deae37ab89162da9127fb0e3b9a (patch) | |
| tree | fe5809ff5f17199e7fa773cd47ef877b4a8125d3 /src/desktop-style.cpp | |
| parent | Added flexible/fixed to fillet chamfer and fix bugs (diff) | |
| parent | on a File->Open, set the viewBox if it did not previously exist, same as was ... (diff) | |
| download | inkscape-ed54c75dc7f31deae37ab89162da9127fb0e3b9a.tar.gz inkscape-ed54c75dc7f31deae37ab89162da9127fb0e3b9a.zip | |
update to trunk
(bzr r13645.1.21)
Diffstat (limited to 'src/desktop-style.cpp')
| -rw-r--r-- | src/desktop-style.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/desktop-style.cpp b/src/desktop-style.cpp index ee9fa39ec..c713e0d61 100644 --- a/src/desktop-style.cpp +++ b/src/desktop-style.cpp @@ -1031,7 +1031,7 @@ objects_query_fontnumbers (GSList *objects, SPStyle *style_res) letterspacing_normal = true; } } else { - letterspacing += style->letter_spacing.computed; /// \todo FIXME: we assume non-% units here + letterspacing += style->letter_spacing.computed * Geom::Affine(item->i2dt_affine()).descrim(); /// \todo FIXME: we assume non-% units here letterspacing_normal = false; } @@ -1040,7 +1040,7 @@ objects_query_fontnumbers (GSList *objects, SPStyle *style_res) wordspacing_normal = true; } } else { - wordspacing += style->word_spacing.computed; /// \todo FIXME: we assume non-% units here + wordspacing += style->word_spacing.computed * Geom::Affine(item->i2dt_affine()).descrim(); /// \todo FIXME: we assume non-% units here wordspacing_normal = false; } |
