From: buliabyak Date: Thu, 8 Mar 2007 19:10:29 +0000 (+0000) Subject: fix shift-dragging (no snap) of rotation center X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=73c9632fdc48b8ffd460a776d66b479d9e2ba0fb;p=inkscape.git fix shift-dragging (no snap) of rotation center --- diff --git a/src/seltrans.cpp b/src/seltrans.cpp index 067c64859..42a46adb2 100644 --- a/src/seltrans.cpp +++ b/src/seltrans.cpp @@ -706,7 +706,7 @@ gboolean Inkscape::SelTrans::handleRequest(SPKnot *knot, NR::Point *position, gu *position = _point + ( *position - _point ) / 10; } - if (!(state & GDK_SHIFT_MASK) == !(_state == STATE_ROTATE)) { + if ((!(state & GDK_SHIFT_MASK) == !(_state == STATE_ROTATE)) && (&handle != &handle_center)) { _origin = _opposite; } else { _origin = _center;