From 65133b7baf95332b9ee6acb56bd37ed400a1db0c Mon Sep 17 00:00:00 2001 From: Krzysztof Kosi??ski Date: Mon, 29 Aug 2011 20:02:57 +0200 Subject: Correct typo in bounding box calculation for groups. Fixes LP #836536 Fixed bugs: - https://launchpad.net/bugs/836536 (bzr r10595) --- src/sp-item-group.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/sp-item-group.cpp b/src/sp-item-group.cpp index ada980b3e..a733097d5 100644 --- a/src/sp-item-group.cpp +++ b/src/sp-item-group.cpp @@ -706,7 +706,7 @@ Geom::OptRect CGroup::bounds(SPItem::BBoxType type, Geom::Affine const &transfor if (SP_IS_ITEM(o) && !SP_ITEM(o)->isHidden()) { SPItem *child = SP_ITEM(o); Geom::Affine const ct(child->transform * transform); - bbox |= child->bounds(type, transform); + bbox |= child->bounds(type, ct); } l = g_slist_remove (l, o); } -- cgit v1.2.3