diff options
| author | bulia byak <buliabyak@gmail.com> | 2009-01-19 19:28:42 +0000 |
|---|---|---|
| committer | buliabyak <buliabyak@users.sourceforge.net> | 2009-01-19 19:28:42 +0000 |
| commit | fcc2a45582f40b518babe0a20e343dd28b2f606e (patch) | |
| tree | a1b91f0b68797b52b34ac81ec4e88f0ece20f99e /src | |
| parent | Rounding errors in feComposite: patch by Preben S (bug 318134) (diff) | |
| download | inkscape-fcc2a45582f40b518babe0a20e343dd28b2f606e.tar.gz inkscape-fcc2a45582f40b518babe0a20e343dd28b2f606e.zip | |
patch 318246
(bzr r7148)
Diffstat (limited to 'src')
| -rw-r--r-- | src/sp-item-transform.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
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(); } } |
