From 8eb3fdf398fef31f9a5cfc367d477b6820630ac3 Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Thu, 9 Oct 2025 11:23:13 +0200 Subject: [PATCH] Fix #147587: don't enter custom groups with double click This is the same behavior as with TAB. --- source/blender/editors/space_node/node_group.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/blender/editors/space_node/node_group.cc b/source/blender/editors/space_node/node_group.cc index 1ea1fe0cc2c..e12469df2b4 100644 --- a/source/blender/editors/space_node/node_group.cc +++ b/source/blender/editors/space_node/node_group.cc @@ -242,6 +242,9 @@ static wmOperatorStatus node_group_enter_exit_invoke(bContext *C, if (!node->is_group()) { return OPERATOR_PASS_THROUGH; } + if (node->is_custom_group()) { + return OPERATOR_PASS_THROUGH; + } bNodeTree *group = id_cast(node->id); if (!group || ID_MISSING(group)) { return OPERATOR_PASS_THROUGH;