summaryrefslogtreecommitdiffstats
path: root/src/ui/tool/multi-path-manipulator.cpp
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2012-01-04 20:49:35 +0000
committerJohan Engelen <goejendaagh@zonnet.nl>2012-01-04 20:49:35 +0000
commit7c932c75f7daff55d89f39dc06097d264af8ef61 (patch)
treef2bc7deaa458af1bfe324abb977bb6c16bd62234 /src/ui/tool/multi-path-manipulator.cpp
parent2geom update: forgot to add new file (diff)
downloadinkscape-7c932c75f7daff55d89f39dc06097d264af8ef61.tar.gz
inkscape-7c932c75f7daff55d89f39dc06097d264af8ef61.zip
new: add nodes at extreme values of selected subpaths
(bzr r10839)
Diffstat (limited to 'src/ui/tool/multi-path-manipulator.cpp')
-rw-r--r--src/ui/tool/multi-path-manipulator.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ui/tool/multi-path-manipulator.cpp b/src/ui/tool/multi-path-manipulator.cpp
index 2316058ed..6a671feb6 100644
--- a/src/ui/tool/multi-path-manipulator.cpp
+++ b/src/ui/tool/multi-path-manipulator.cpp
@@ -336,6 +336,11 @@ void MultiPathManipulator::insertNodes()
invokeForAll(&PathManipulator::insertNodes);
_done(_("Add nodes"));
}
+void MultiPathManipulator::insertNodesAtExtrema(ExtremumType extremum)
+{
+ invokeForAll(&PathManipulator::insertNodeAtExtremum, extremum);
+ _done(_("Add extremum nodes"));
+}
void MultiPathManipulator::duplicateNodes()
{