summaryrefslogtreecommitdiffstats
path: root/src/text-chemistry.cpp
diff options
context:
space:
mode:
authorAlexander Valavanis <valavanisalex@gmail.com>2019-06-05 19:33:55 +0000
committerAlexander Valavanis <valavanisalex@gmail.com>2019-06-05 19:33:55 +0000
commit2e40143d6e75d50bf659abddc5c7c25fb1bc2436 (patch)
treee2fa747c95569dc3f77fcdfa770b3d404ff065cc /src/text-chemistry.cpp
parentHackfest2019: Rm tautological tests (diff)
parentUse a flowbox when there are more than two options for font feature settings. (diff)
downloadinkscape-2e40143d6e75d50bf659abddc5c7c25fb1bc2436.tar.gz
inkscape-2e40143d6e75d50bf659abddc5c7c25fb1bc2436.zip
Merge changes
Diffstat (limited to 'src/text-chemistry.cpp')
-rw-r--r--src/text-chemistry.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/text-chemistry.cpp b/src/text-chemistry.cpp
index 8a2433ec6..802f10a3f 100644
--- a/src/text-chemistry.cpp
+++ b/src/text-chemistry.cpp
@@ -334,9 +334,10 @@ text_flow_into_shape()
} else {
// SVG 1.2 Flowed Text
- if (SP_IS_TEXT(text)) {
+ if (SP_IS_TEXT(text) || SP_IS_FLOWTEXT(text)) {
// remove transform from text, but recursively scale text's fontsize by the expansion
- SP_TEXT(text)->_adjustFontsizeRecursive(text, text->transform.descrim());
+ auto ex = i2i_affine(text, shape->parent).descrim();
+ SP_TEXT(text)->_adjustFontsizeRecursive(text, ex);
text->getRepr()->setAttribute("transform", nullptr);
}