summaryrefslogtreecommitdiffstats
path: root/src/object/sp-text.cpp
diff options
context:
space:
mode:
authorJabiertxof <jabier.arraiza@marker.es>2019-09-16 17:36:12 +0000
committerJabiertxof <jabier.arraiza@marker.es>2019-09-16 17:36:12 +0000
commit24b3b2183082d22415c8cb4d4fcf36726d3060c5 (patch)
tree71fcd56289c209c6adf1e665039cf4798dc460eb /src/object/sp-text.cpp
parentRealy fix crash pasting and speed improvements (diff)
downloadinkscape-24b3b2183082d22415c8cb4d4fcf36726d3060c5.tar.gz
inkscape-24b3b2183082d22415c8cb4d4fcf36726d3060c5.zip
Active SVG2 Flow Text by default
Diffstat (limited to 'src/object/sp-text.cpp')
-rw-r--r--src/object/sp-text.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/object/sp-text.cpp b/src/object/sp-text.cpp
index 01e56633a..bf406601e 100644
--- a/src/object/sp-text.cpp
+++ b/src/object/sp-text.cpp
@@ -417,7 +417,7 @@ void SPText::show_shape_inside()
Geom::Affine SPText::set_transform(Geom::Affine const &xform) {
// See if 'shape-inside' has rectangle
Inkscape::Preferences *prefs = Inkscape::Preferences::get();
- if (prefs->getBool("/tools/text/use_svg2")) {
+ if (prefs->getBool("/tools/text/use_svg2", true)) {
Inkscape::XML::Node* rectangle = get_first_rectangle();
if (rectangle) {
return xform;