diff options
| author | Alvin Penner <penner@vaxxine.com> | 2014-10-03 19:15:18 +0000 |
|---|---|---|
| committer | apenner <penner@vaxxine.com> | 2014-10-03 19:15:18 +0000 |
| commit | 601a9a118cf80672d71e503e86827d17c5043590 (patch) | |
| tree | 904f06832c5892d63f81932c5a78f5673c22fe22 /src/sp-item-group.cpp | |
| parent | Work-around for Pango 1.36.7 which introduced 'Semi-Light' font weight, (diff) | |
| download | inkscape-601a9a118cf80672d71e503e86827d17c5043590.tar.gz inkscape-601a9a118cf80672d71e503e86827d17c5043590.zip | |
modify scaling procedure for uniform scaling of flowed text (Bug 1278561)
Fixed bugs:
- https://launchpad.net/bugs/1278561
(bzr r13578)
Diffstat (limited to 'src/sp-item-group.cpp')
| -rw-r--r-- | src/sp-item-group.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp-item-group.cpp b/src/sp-item-group.cpp index b65be8f22..3fd6a1e80 100644 --- a/src/sp-item-group.cpp +++ b/src/sp-item-group.cpp @@ -725,7 +725,7 @@ void SPGroup::scaleChildItemsRec(Geom::Scale const &sc, Geom::Point const &p, bo if (SP_IS_PERSP3D(item)) { persp3d_apply_affine_transformation(SP_PERSP3D(item), final); - } else if ((SP_IS_TEXT_TEXTPATH(item) || SP_IS_FLOWTEXT(item)) && !item->transform.isIdentity()) { + } else if (SP_IS_TEXT_TEXTPATH(item) && !item->transform.isIdentity()) { // Save and reset current transform Geom::Affine tmp(item->transform); item->transform = Geom::Affine(); |
