From: Krzysztof KosiƄski Date: Sun, 7 Nov 2010 21:15:48 +0000 (+0100) Subject: Reintroduce Shift+U shortcut (make segments curves) X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d3b077d8646b0ae5825b3f5346017048f0ab96b0;p=inkscape.git Reintroduce Shift+U shortcut (make segments curves) --- diff --git a/src/ui/tool/multi-path-manipulator.cpp b/src/ui/tool/multi-path-manipulator.cpp index 494a81a8d..a85e85217 100644 --- a/src/ui/tool/multi-path-manipulator.cpp +++ b/src/ui/tool/multi-path-manipulator.cpp @@ -628,6 +628,13 @@ bool MultiPathManipulator::event(GdkEvent *event) setSegmentType(SEGMENT_STRAIGHT); return true; } + case GDK_u: + case GDK_U: + if (held_only_shift(event->key)) { + // Shift+L - make segments curves + setSegmentType(SEGMENT_CUBIC_BEZIER); + return true; + } default: break; }