From: Johan Engelen Date: Tue, 27 Apr 2010 20:01:10 +0000 (+0200) Subject: Fix wrong bbox upon selecting clones of horizontal/vertical lines (related to bug... X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=f034c6769a8a194c2cd77e01c16f41eff9bd3689;p=inkscape.git Fix wrong bbox upon selecting clones of horizontal/vertical lines (related to bug #318726) --- diff --git a/src/sp-use.cpp b/src/sp-use.cpp index 7962390c2..9cd38e4b3 100644 --- a/src/sp-use.cpp +++ b/src/sp-use.cpp @@ -288,7 +288,14 @@ sp_use_bbox(SPItem const *item, NRRect *bbox, Geom::Matrix const &transform, uns * Geom::Translate(use->x.computed, use->y.computed) * transform ); - sp_item_invoke_bbox_full(child, bbox, ct, flags, FALSE); + Geom::OptRect optbbox; + sp_item_invoke_bbox_full(child, optbbox, ct, flags, FALSE); + if (optbbox) { + bbox->x0 = (*optbbox)[0][0]; + bbox->y0 = (*optbbox)[1][0]; + bbox->x1 = (*optbbox)[0][1]; + bbox->y1 = (*optbbox)[1][1]; + } } }