From: buliabyak Date: Mon, 19 Jan 2009 19:28:42 +0000 (+0000) Subject: patch 318246 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=2eba5f17637982445fda358c7d6daf60c052f8a4;p=inkscape.git patch 318246 --- diff --git a/src/sp-item-transform.cpp b/src/sp-item-transform.cpp index 90f84ae0a..23c0bdf33 100644 --- a/src/sp-item-transform.cpp +++ b/src/sp-item-transform.cpp @@ -32,6 +32,7 @@ sp_item_rotate_rel(SPItem *item, Geom::Rotate const &rotation) // Restore the center position (it's changed because the bbox center changed) if (item->isCenterSet()) { item->setCenter(center * affine); + item->updateRepr(); } } @@ -61,6 +62,7 @@ sp_item_skew_rel (SPItem *item, double skewX, double skewY) // Restore the center position (it's changed because the bbox center changed) if (item->isCenterSet()) { item->setCenter(center * affine); + item->updateRepr(); } }