From 9244dfe08e6a5cf2acf4c798bc3403b3efe26807 Mon Sep 17 00:00:00 2001 From: Chris Cranford Date: Wed, 24 Apr 2024 19:39:27 -0400 Subject: [PATCH] GH-281 Improve rendering of math nodes in all actions --- src/editor/graph/actions/default_action_registrar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editor/graph/actions/default_action_registrar.cpp b/src/editor/graph/actions/default_action_registrar.cpp index 51057058..dc728875 100644 --- a/src/editor/graph/actions/default_action_registrar.cpp +++ b/src/editor/graph/actions/default_action_registrar.cpp @@ -312,7 +312,7 @@ void OrchestratorDefaultGraphActionRegistrar::_register_script_nodes(const Orche // todo: move these to new package once tested String category = vformat("Operators/%s/%s", friendly_name, op.name); if (!op.right_type_name.is_empty()) - category += vformat("_(_%s_)", op.right_type_name); + category += vformat("_(_%s_%s_%s_)", op.left_type_name, op.code, op.right_type_name); const Dictionary data = DictionaryUtils::of({ { "op", op.op }, { "code", op.code },