summaryrefslogtreecommitdiffstats
path: root/src/nodepath.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/nodepath.cpp')
-rw-r--r--src/nodepath.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nodepath.cpp b/src/nodepath.cpp
index e8a118646..26078ea92 100644
--- a/src/nodepath.cpp
+++ b/src/nodepath.cpp
@@ -836,11 +836,11 @@ static Inkscape::NodePath::Node *sp_nodepath_set_node_type(Inkscape::NodePath::N
if (node->type == Inkscape::NodePath::NODE_CUSP) {
node->knot->setShape (SP_KNOT_SHAPE_DIAMOND);
- node->knot->setSize (9);
+ node->knot->setSize (node->selected? 11 : 9);
sp_knot_update_ctrl(node->knot);
} else {
node->knot->setShape (SP_KNOT_SHAPE_SQUARE);
- node->knot->setSize (7);
+ node->knot->setSize (node->selected? 9 : 7);
sp_knot_update_ctrl(node->knot);
}