diff options
| author | Krzysztof Kosi??ski <tweenk.pl@gmail.com> | 2010-04-03 02:24:37 +0000 |
|---|---|---|
| committer | Krzysztof KosiĆski <tweenk.pl@gmail.com> | 2010-04-03 02:24:37 +0000 |
| commit | 078d8b361e3b5c390a5f1b49986b7347f8003d67 (patch) | |
| tree | eced52f8cdc4e513eea574ae61fee836ff268b0a /src/ui/tool/control-point-selection.cpp | |
| parent | Initial fix for the inverted coordinate system bug (diff) | |
| download | inkscape-078d8b361e3b5c390a5f1b49986b7347f8003d67.tar.gz inkscape-078d8b361e3b5c390a5f1b49986b7347f8003d67.zip | |
Fix rotation in node and select tool
(bzr r9281.1.2)
Diffstat (limited to '')
| -rw-r--r-- | src/ui/tool/control-point-selection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/tool/control-point-selection.cpp b/src/ui/tool/control-point-selection.cpp index dfbf1170a..c7fc8a3cc 100644 --- a/src/ui/tool/control-point-selection.cpp +++ b/src/ui/tool/control-point-selection.cpp @@ -561,9 +561,9 @@ bool ControlPointSelection::event(GdkEvent *event) // rotates case GDK_bracketleft: - return _keyboardRotate(event->key, 1); - case GDK_bracketright: return _keyboardRotate(event->key, -1); + case GDK_bracketright: + return _keyboardRotate(event->key, 1); // scaling case GDK_less: |
