summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKrzysztof Kosi??ski <tweenk.pl@gmail.com>2010-11-07 21:15:48 +0000
committerKrzysztof KosiƄski <tweenk.pl@gmail.com>2010-11-07 21:15:48 +0000
commit1bf617cedfbc6399c41c423d1bae39f5a06ad2a1 (patch)
treee001245760fba20938b90ce651ce96f5bb6387a4 /src
parentLeave constrained angular snapping to the snap manager, instead of handling i... (diff)
downloadinkscape-1bf617cedfbc6399c41c423d1bae39f5a06ad2a1.tar.gz
inkscape-1bf617cedfbc6399c41c423d1bae39f5a06ad2a1.zip
Reintroduce Shift+U shortcut (make segments curves)
(bzr r9881)
Diffstat (limited to 'src')
-rw-r--r--src/ui/tool/multi-path-manipulator.cpp7
1 files changed, 7 insertions, 0 deletions
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;
}