Browse Source

Use the Unicode "multiply" sign for the "A x B" visual script node

Hugo Locurcio 5 years ago
parent
commit
08b4671e03
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/visual_script/visual_script_nodes.cpp

+ 1 - 1
modules/visual_script/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,