Merge pull request #114789 from detomon/fix-graph-node-typo

Fix accessibility name when right slot is enabled in `GraphNode`
This commit is contained in:
Rémi Verschelde
2026-01-09 15:00:56 +01:00

View File

@@ -580,7 +580,7 @@ void GraphNode::_notification(int p_what) {
}
}
}
if (slot.enable_left) {
if (slot.enable_right) {
if (type_info.has(slot.type_right)) {
name += "," + vformat(ETR("output port, type: %s"), type_info[slot.type_right]);
} else {