From e3ee08f93836fe62bacb5492447846e3fe41444a Mon Sep 17 00:00:00 2001 From: Timon Date: Sat, 21 Mar 2026 15:59:44 +0000 Subject: [PATCH] Show nodes display name in properties panel if set --- .../messages/portfolio/document/node_graph/node_properties.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/src/messages/portfolio/document/node_graph/node_properties.rs b/editor/src/messages/portfolio/document/node_graph/node_properties.rs index 482d67f78d..e933b0005b 100644 --- a/editor/src/messages/portfolio/document/node_graph/node_properties.rs +++ b/editor/src/messages/portfolio/document/node_graph/node_properties.rs @@ -1796,7 +1796,7 @@ pub(crate) fn generate_node_properties(node_id: NodeId, context: &mut NodeProper if layout.is_empty() { layout = node_no_properties(node_id, context); } - let name = context.network_interface.implementation_name(&node_id, context.selection_network_path); + let name = context.network_interface.display_name(&node_id, context.selection_network_path); let description = context .network_interface