From 2d9b12acbff20d95b59e46af4979dfa37dfb25c0 Mon Sep 17 00:00:00 2001 From: detomon Date: Sat, 23 Aug 2025 13:26:27 +0200 Subject: [PATCH] Fix accessibility name when right slot is enabled in `GraphNode` --- scene/gui/graph_node.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/gui/graph_node.cpp b/scene/gui/graph_node.cpp index eaade00937..c1c7409120 100644 --- a/scene/gui/graph_node.cpp +++ b/scene/gui/graph_node.cpp @@ -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 {