Browse Source

Fixed evaluation for types

David Sichma 5 years ago
parent
commit
94fb3f666c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      editor/plugins/script_text_editor.cpp

+ 1 - 1
editor/plugins/script_text_editor.cpp

@@ -1186,7 +1186,7 @@ void ScriptTextEditor::_edit_option(int p_op) {
 				if (expression.parse(line) == OK) {
 				if (expression.parse(line) == OK) {
 					Variant result = expression.execute(Array(), Variant(), false);
 					Variant result = expression.execute(Array(), Variant(), false);
 					if (expression.get_error_text() == "") {
 					if (expression.get_error_text() == "") {
-						results.append(whitespace + (String)result);
+						results.append(whitespace + result.get_construct_string());
 					} else {
 					} else {
 						results.append(line);
 						results.append(line);
 					}
 					}