summaryrefslogtreecommitdiffstats
path: root/src/ui/tool/control-point-selection.cpp
diff options
context:
space:
mode:
authorKrzysztof Kosi??ski <tweenk.pl@gmail.com>2010-02-06 21:45:14 +0000
committerKrzysztof KosiƄski <tweenk.pl@gmail.com>2010-02-06 21:45:14 +0000
commit9d9e9264afc4e6f83d59bd25ccae505eadb739d8 (patch)
tree3621f6c37127818a59083d5c8207f656b6bf5c7d /src/ui/tool/control-point-selection.cpp
parentFix event handling for control points when multiple buttons are pressed; (diff)
downloadinkscape-9d9e9264afc4e6f83d59bd25ccae505eadb739d8.tar.gz
inkscape-9d9e9264afc4e6f83d59bd25ccae505eadb739d8.zip
Fix performance regressions in the node tool and a stupid crash bug
when deleting more than one stretch of selected nodes (bzr r9061)
Diffstat (limited to 'src/ui/tool/control-point-selection.cpp')
-rw-r--r--src/ui/tool/control-point-selection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/tool/control-point-selection.cpp b/src/ui/tool/control-point-selection.cpp
index de19fef8d..638318dbf 100644
--- a/src/ui/tool/control-point-selection.cpp
+++ b/src/ui/tool/control-point-selection.cpp
@@ -344,7 +344,7 @@ void ControlPointSelection::_updateTransformHandles(bool preserve_center)
bool ControlPointSelection::_keyboardMove(GdkEventKey const &event, Geom::Point const &dir)
{
if (held_control(event)) return false;
- unsigned num = 1 + consume_same_key_events(shortcut_key(event), 0);
+ unsigned num = 1 + combine_key_events(shortcut_key(event), 0);
Geom::Point delta = dir * num;
if (held_shift(event)) delta *= 10;