Skip to content

Commit

Permalink
Merge pull request #44326 from AndreaCatania/AndreaCatania-patch-5
Browse files Browse the repository at this point in the history
Fixed EditorPropertyText change signal emission.
  • Loading branch information
akien-mga authored Dec 19, 2020
2 parents 16524d4 + ed1f208 commit bb53e35
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 bb53e35

Please sign in to comment.