From 6938d98f3631467e5a4eac840bc766ab1f43d51b Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Fri, 15 Nov 2019 19:06:53 +0100 Subject: [PATCH] Use the Unicode "multiply" sign for the "A x B" visual script node --- visual_script_nodes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/visual_script_nodes.cpp b/visual_script_nodes.cpp index 957127f..857d640 100644 --- a/visual_script_nodes.cpp +++ b/visual_script_nodes.cpp @@ -949,7 +949,7 @@ String VisualScriptOperator::get_caption() const { //mathematic L"A + B", //OP_ADD, L"A - B", //OP_SUBTRACT, - L"A x B", //OP_MULTIPLY, + L"A \u00D7 B", //OP_MULTIPLY, L"A \u00F7 B", //OP_DIVIDE, L"\u00AC A", //OP_NEGATE, L"+ A", //OP_POSITIVE,