Merge pull request #33643 from Calinou/visual-script-multiply-sign

Use the Unicode "multiply" sign for the "A x B" visual script node
This commit is contained in:
Rémi Verschelde 2019-11-16 22:54:41 +01:00 committed by GitHub
commit 53bc47a4da
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,