From: Krzysztof KosiƄski Date: Thu, 16 Dec 2010 19:27:26 +0000 (+0100) Subject: Node tool: correctly save node skewing to undo history X-Git-Url: https://git.tokkee.org/?p=inkscape.git;a=commitdiff_plain;h=6aba22359627ef015ee03b85e4b7b5b98684b834 Node tool: correctly save node skewing to undo history --- 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;