summaryrefslogtreecommitdiffstats
path: root/src/sp-flowtext.cpp
diff options
context:
space:
mode:
authorTavmjong Bah <>2016-07-13 02:42:57 +0000
committerkamalpreetgrewal <grewalkamal005@gmail.com>2016-07-13 02:42:57 +0000
commit798cda4430354143e90fb7ce81c3593a6dc24bc5 (patch)
tree0daf3d324bf8f2ebc0ac3300bdcb6fff3a6251ad /src/sp-flowtext.cpp
parentMerge changes from trunk (diff)
downloadinkscape-798cda4430354143e90fb7ce81c3593a6dc24bc5.tar.gz
inkscape-798cda4430354143e90fb7ce81c3593a6dc24bc5.zip
Propagate changes to object tree with changes in style element
(bzr r14949.1.46)
Diffstat (limited to 'src/sp-flowtext.cpp')
-rw-r--r--src/sp-flowtext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp-flowtext.cpp b/src/sp-flowtext.cpp
index 51fb3ae89..90d4be87c 100644
--- a/src/sp-flowtext.cpp
+++ b/src/sp-flowtext.cpp
@@ -540,7 +540,7 @@ Inkscape::XML::Node *SPFlowtext::getAsText()
this->layout.getSourceOfCharacter(it, &rawptr, &span_text_start_iter);
SPObject *source_obj = reinterpret_cast<SPObject *>(rawptr);
- Glib::ustring style_text = (dynamic_cast<SPString *>(source_obj) ? source_obj->parent : source_obj)->style->write( SP_STYLE_FLAG_IFDIFF, this->style);
+ Glib::ustring style_text = (dynamic_cast<SPString *>(source_obj) ? source_obj->parent : source_obj)->style->write( SP_STYLE_FLAG_IFDIFF, SP_STYLE_SRC_UNSET, this->style);
if (!style_text.empty()) {
span_tspan->setAttribute("style", style_text.c_str());
}