Skip to content

Commit 2ed91ed

Browse files
committed
Merge pull request godotengine#114789 from detomon/fix-graph-node-typo
Fix accessibility name when right slot is enabled in `GraphNode`
2 parents a7c6538 + 2d9b12a commit 2ed91ed

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scene/gui/graph_node.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ void GraphNode::_notification(int p_what) {
580580
}
581581
}
582582
}
583-
if (slot.enable_left) {
583+
if (slot.enable_right) {
584584
if (type_info.has(slot.type_right)) {
585585
name += "," + vformat(ETR("output port, type: %s"), type_info[slot.type_right]);
586586
} else {

0 commit comments

Comments
 (0)