From 7c932c75f7daff55d89f39dc06097d264af8ef61 Mon Sep 17 00:00:00 2001 From: "Johan B. C. Engelen" Date: Wed, 4 Jan 2012 21:49:35 +0100 Subject: new: add nodes at extreme values of selected subpaths (bzr r10839) --- src/widgets/toolbox.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/widgets/toolbox.cpp') diff --git a/src/widgets/toolbox.cpp b/src/widgets/toolbox.cpp index 2da0642ae..3960f2349 100644 --- a/src/widgets/toolbox.cpp +++ b/src/widgets/toolbox.cpp @@ -286,10 +286,10 @@ static gchar const * ui_descr = " " " " " " -/* " " + " " " " " " - " " */ + " " " " " " " " @@ -1162,28 +1162,28 @@ static void sp_node_path_edit_add_min_x(void) { InkNodeTool *nt = get_node_tool(); if (nt) { - nt->_multipath->insertNodes(); + nt->_multipath->insertNodesAtExtrema(Inkscape::UI::PointManipulator::EXTR_MIN_X); } } static void sp_node_path_edit_add_max_x(void) { InkNodeTool *nt = get_node_tool(); if (nt) { - nt->_multipath->insertNodes(); + nt->_multipath->insertNodesAtExtrema(Inkscape::UI::PointManipulator::EXTR_MAX_X); } } static void sp_node_path_edit_add_min_y(void) { InkNodeTool *nt = get_node_tool(); if (nt) { - nt->_multipath->insertNodes(); + nt->_multipath->insertNodesAtExtrema(Inkscape::UI::PointManipulator::EXTR_MIN_Y); } } static void sp_node_path_edit_add_max_y(void) { InkNodeTool *nt = get_node_tool(); if (nt) { - nt->_multipath->insertNodes(); + nt->_multipath->insertNodesAtExtrema(Inkscape::UI::PointManipulator::EXTR_MAX_Y); } } -- cgit v1.2.3