Fix #147587: don't enter custom groups with double click

This is the same behavior as with TAB.
This commit is contained in:
Jacques Lucke
2025-10-09 11:23:13 +02:00
parent 17954b8d8d
commit 8eb3fdf398

View File

@@ -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<bNodeTree *>(node->id);
if (!group || ID_MISSING(group)) {
return OPERATOR_PASS_THROUGH;