summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMike Pittman <thepittos@yahoo.com.au>2008-05-22 16:31:22 +0000
committerozmikepittman <ozmikepittman@users.sourceforge.net>2008-05-22 16:31:22 +0000
commit6307ec37229b1a26bba68fcce24904a4c2c6311d (patch)
tree197047b99c6045b0e17938192a57a10e7f216a17 /src
parentImproved emf handling (diff)
downloadinkscape-6307ec37229b1a26bba68fcce24904a4c2c6311d.tar.gz
inkscape-6307ec37229b1a26bba68fcce24904a4c2c6311d.zip
Fixing z-order problem on flowed text -> text. See LP#233830
(bzr r5735)
Diffstat (limited to 'src')
-rw-r--r--src/text-chemistry.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/text-chemistry.cpp b/src/text-chemistry.cpp
index 3a100a6fe..0eeac8c4f 100644
--- a/src/text-chemistry.cpp
+++ b/src/text-chemistry.cpp
@@ -508,7 +508,7 @@ flowtext_to_text()
did = true;
Inkscape::XML::Node *parent = SP_OBJECT_REPR(item)->parent();
- parent->appendChild(repr);
+ parent->addChild(repr, SP_OBJECT_REPR(item));
SPItem *new_item = (SPItem *) sp_desktop_document(desktop)->getObjectByRepr(repr);
sp_item_write_transform(new_item, repr, item->transform);