diff options
| author | Krzysztof Kosi??ski <tweenk.pl@gmail.com> | 2010-12-16 19:27:26 +0000 |
|---|---|---|
| committer | Krzysztof KosiĆski <tweenk.pl@gmail.com> | 2010-12-16 19:27:26 +0000 |
| commit | 89363253b6fc2e0f1d01136fb91f039599236be2 (patch) | |
| tree | 57720171385e37ea55e0697e72ac792d1f0b64b1 /src/ui/tool/multi-path-manipulator.cpp | |
| parent | Translations. po files update; fix Ahmaric header. (diff) | |
| download | inkscape-89363253b6fc2e0f1d01136fb91f039599236be2.tar.gz inkscape-89363253b6fc2e0f1d01136fb91f039599236be2.zip | |
Node tool: correctly save node skewing to undo history
Fixed bugs:
- https://launchpad.net/bugs/590259
(bzr r9956)
Diffstat (limited to 'src/ui/tool/multi-path-manipulator.cpp')
| -rw-r--r-- | src/ui/tool/multi-path-manipulator.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ui/tool/multi-path-manipulator.cpp b/src/ui/tool/multi-path-manipulator.cpp index ef1c764bb..5f60f117a 100644 --- a/src/ui/tool/multi-path-manipulator.cpp +++ b/src/ui/tool/multi-path-manipulator.cpp @@ -695,6 +695,14 @@ void MultiPathManipulator::_commit(CommitEvent cps) reason = _("Scale nodes vertically"); key = "node:scale:y"; break; + case COMMIT_MOUSE_SKEW_X: + reason = _("Skew nodes horizontally"); + key = "node:skew:x"; + break; + case COMMIT_MOUSE_SKEW_Y: + reason = _("Skew nodes vertically"); + key = "node:skew:y"; + break; case COMMIT_FLIP_X: reason = _("Flip nodes horizontally"); break; |
