diff options
| author | Krzysztof Kosi??ski <tweenk.pl@gmail.com> | 2010-04-03 03:05:19 +0000 |
|---|---|---|
| committer | Krzysztof KosiĆski <tweenk.pl@gmail.com> | 2010-04-03 03:05:19 +0000 |
| commit | 60e01e694ad379737b6ef436b8973e67871979b1 (patch) | |
| tree | 7ec7b17adf5b0a603d9144b5dc114a105c53706e /src/ui/tool/multi-path-manipulator.cpp | |
| parent | Fix align & distribute dialog (diff) | |
| download | inkscape-60e01e694ad379737b6ef436b8973e67871979b1.tar.gz inkscape-60e01e694ad379737b6ef436b8973e67871979b1.zip | |
Fix single-handle keybindings
(bzr r9281.1.4)
Diffstat (limited to 'src/ui/tool/multi-path-manipulator.cpp')
| -rw-r--r-- | src/ui/tool/multi-path-manipulator.cpp | 6 |
1 files 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: |
