diff options
| author | root <root@jtx.marker.es> | 2013-03-11 23:48:05 +0000 |
|---|---|---|
| committer | root <root@jtx.marker.es> | 2013-03-11 23:48:05 +0000 |
| commit | b2981a3b8f54bccfa45c76f57b38c9c93808d2fc (patch) | |
| tree | 59eae63d752f70b5ad26acc2852f82ebbb9f1563 /src/ui/tool/multi-path-manipulator.cpp | |
| parent | Merge from trunk (diff) | |
| download | inkscape-b2981a3b8f54bccfa45c76f57b38c9c93808d2fc.tar.gz inkscape-b2981a3b8f54bccfa45c76f57b38c9c93808d2fc.zip | |
~sub fix, double click to reset default handles and control to 10% step
(bzr r11950.1.51)
Diffstat (limited to 'src/ui/tool/multi-path-manipulator.cpp')
| -rw-r--r-- | src/ui/tool/multi-path-manipulator.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ui/tool/multi-path-manipulator.cpp b/src/ui/tool/multi-path-manipulator.cpp index c9e35e5b2..2ef8c1766 100644 --- a/src/ui/tool/multi-path-manipulator.cpp +++ b/src/ui/tool/multi-path-manipulator.cpp @@ -296,6 +296,7 @@ void MultiPathManipulator::invertSelectionInSubpaths() invokeForAll(&PathManipulator::invertSelectionInSubpaths); } + void MultiPathManipulator::setNodeType(NodeType type) { if (_selection.empty()) return; @@ -307,7 +308,7 @@ void MultiPathManipulator::setNodeType(NodeType type) Node *node = dynamic_cast<Node*>(*i); if (node) { retract_handles &= (node->type() == NODE_CUSP); - node->setType(type); + node->setType(type,true); } } @@ -324,6 +325,7 @@ void MultiPathManipulator::setNodeType(NodeType type) _done(retract_handles ? _("Retract handles") : _("Change node type")); } + void MultiPathManipulator::setSegmentType(SegmentType type) { if (_selection.empty()) return; |
