From: Krzysztof KosiƄski Date: Thu, 16 Dec 2010 19:28:30 +0000 (+0100) Subject: Node tool: fix moving multiple nodes along handles (Ctrl+Alt) X-Git-Url: https://git.tokkee.org/?p=inkscape.git;a=commitdiff_plain;h=bd7bd2319ce1940e8cdba8becbecf5af45800959 Node tool: fix moving multiple nodes along handles (Ctrl+Alt) --- diff --git a/src/ui/tool/control-point-selection.cpp b/src/ui/tool/control-point-selection.cpp index 91e0bc2c2..baa53f76e 100644 --- a/src/ui/tool/control-point-selection.cpp +++ b/src/ui/tool/control-point-selection.cpp @@ -290,7 +290,7 @@ void ControlPointSelection::_pointDragged(Geom::Point &new_pos, GdkEventMotion * { Geom::Point abs_delta = new_pos - _original_positions[_grabbed_point]; double fdist = Geom::distance(_original_positions[_grabbed_point], _original_positions[_farthest_point]); - if (held_alt(*event) && fdist > 0) { + if (held_only_alt(*event) && fdist > 0) { // Sculpting for (iterator i = _points.begin(); i != _points.end(); ++i) { SelectableControlPoint *cur = (*i);