Skip to content

Commit

Permalink
Fixed EditorPropertyText change signal emission.
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreaCatania authored Dec 12, 2020
1 parent 3b4fad4 commit ed1f208
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions editor/editor_properties.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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), "", false);
} else {
emit_changed(get_edited_property(), p_string, "", true);
emit_changed(get_edited_property(), p_string, "", false);
}
}

Expand Down

0 comments on commit ed1f208

Please sign in to comment.