diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2012-01-04 20:49:35 +0000 |
|---|---|---|
| committer | Johan Engelen <goejendaagh@zonnet.nl> | 2012-01-04 20:49:35 +0000 |
| commit | 7c932c75f7daff55d89f39dc06097d264af8ef61 (patch) | |
| tree | f2bc7deaa458af1bfe324abb977bb6c16bd62234 /src/ui/tool/multi-path-manipulator.cpp | |
| parent | 2geom update: forgot to add new file (diff) | |
| download | inkscape-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.cpp | 5 |
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() { |
