Clean up and fix issues after merging #21701 , closes #21104

This commit is contained in:
Juan Linietsky
2019-01-18 13:01:24 -03:00
parent 580bebda52
commit 541422a4a2
11 changed files with 71 additions and 62 deletions

View File

@@ -39,7 +39,7 @@ void EditorPropertyRootMotion::_confirmed() {
return;
NodePath path = ti->get_metadata(0);
emit_signal("property_changed", get_edited_property(), path);
emit_changed(get_edited_property(), path);
update_property();
filter_dialog->hide(); //may come from activated
}
@@ -195,7 +195,7 @@ void EditorPropertyRootMotion::_node_assign() {
void EditorPropertyRootMotion::_node_clear() {
emit_signal("property_changed", get_edited_property(), NodePath());
emit_changed(get_edited_property(), NodePath());
update_property();
}