From 0128f0783249b37708f99fe84b7dbf5f50acb5e7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Krzysztof=20Kosi=C5=84ski?= Date: Sat, 3 Apr 2010 05:05:19 +0200 Subject: [PATCH] Fix single-handle keybindings --- src/ui/tool/multi-path-manipulator.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/ui/tool/multi-path-manipulator.cpp b/src/ui/tool/multi-path-manipulator.cpp index 2025a12d7..392518207 100644 --- a/src/ui/tool/multi-path-manipulator.cpp +++ b/src/ui/tool/multi-path-manipulator.cpp @@ -470,12 +470,10 @@ bool MultiPathManipulator::event(GdkEvent *event) // single handle functions // rotation case GDK_bracketleft: - case GDK_braceleft: - pm.rotateHandle(n, which, 1, one_pixel); + pm.rotateHandle(n, which, -1, one_pixel); break; case GDK_bracketright: - case GDK_braceright: - pm.rotateHandle(n, which, -1, one_pixel); + pm.rotateHandle(n, which, 1, one_pixel); break; // adjust length case GDK_period: -- 2.30.2