Răsfoiți Sursa

Merge pull request #52245 from AndreaCatania/AndreaCatania-patch-4

EditorPropertyText, pass changing variable false.
Juan Linietsky 4 ani în urmă
părinte
comite
503244d452
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 2 2
      editor/editor_properties.cpp

+ 2 - 2
editor/editor_properties.cpp

@@ -68,9 +68,9 @@ void EditorPropertyText::_text_changed(const String &p_string) {
 	}
 
 	if (string_name) {
-		emit_changed(get_edited_property(), StringName(p_string), "", true);
+		emit_changed(get_edited_property(), StringName(p_string));
 	} else {
-		emit_changed(get_edited_property(), p_string, "", true);
+		emit_changed(get_edited_property(), p_string);
 	}
 }