summaryrefslogtreecommitdiffstats
path: root/src/libnrtype
diff options
context:
space:
mode:
authorMartin Owens <doctormo@gmail.com>2013-09-20 20:27:08 +0000
committerMartin Owens <doctormo@gmail.com>2013-09-20 20:27:08 +0000
commitd332b7a8d0e55612abc377a107bb1768fc657637 (patch)
treeb67ef82509bc254c8dcc8aede2c7f09e0e488d96 /src/libnrtype
parentFix build with dbus api enabled. (diff)
downloadinkscape-d332b7a8d0e55612abc377a107bb1768fc657637.tar.gz
inkscape-d332b7a8d0e55612abc377a107bb1768fc657637.zip
Fix the text filter issue and revert many changes.
(bzr r12556)
Diffstat (limited to 'src/libnrtype')
-rw-r--r--src/libnrtype/Layout-TNG-Output.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libnrtype/Layout-TNG-Output.cpp b/src/libnrtype/Layout-TNG-Output.cpp
index f7f910c2f..060cecebf 100644
--- a/src/libnrtype/Layout-TNG-Output.cpp
+++ b/src/libnrtype/Layout-TNG-Output.cpp
@@ -181,8 +181,9 @@ void Layout::show(DrawingGroup *in_arena, Geom::OptRect const &paintbox) const
glyph_index++;
}
nr_text->setStyle(text_source->style);
- nr_text->setItemBounds(paintbox);
in_arena->prependChild(nr_text);
+ // Set item bounds without filter enlargement
+ in_arena->setItemBounds(paintbox);
}
}