Fix overwriting all common properties when using `Change Type` tool

If you change the type of an existing node, it checks if you have
modified the initial value of their properties before overwriting
their values in the new node.

For example, if you created a `Label` and changed it to
`LineEdit`, the `mouse_filter` property was created as `Ignore`
for the original `Label` node, and was maintained after changing
it to `LineEdit` causing not to work as expected. Now it checks if
`Ignore` is the default value for `Label` nodes, and as it is, the
property value is left unchanged, maintaining the default value
for `LineEdit`, which is `Stop`.

Fix #13955 and alike.

(cherry picked from commit 8ea4ea0d53)
This commit is contained in:
robfram 2018-03-09 19:05:04 +01:00 committed by Hein-Pieter van Braam
parent a3ba1b0280
commit d49579b038
1 changed files with 6 additions and 1 deletions

View File

@ -1402,6 +1402,8 @@ void SceneTreeDock::_create() {
Node *newnode = Object::cast_to<Node>(c);
ERR_FAIL_COND(!newnode);
Node *default_oldnode = Object::cast_to<Node>(ClassDB::instance(n->get_class()));
List<PropertyInfo> pinfo;
n->get_property_list(&pinfo);
@ -1410,10 +1412,13 @@ void SceneTreeDock::_create() {
continue;
if (E->get().name == "__meta__")
continue;
newnode->set(E->get().name, n->get(E->get().name));
if (default_oldnode->get(E->get().name) != n->get(E->get().name)) {
newnode->set(E->get().name, n->get(E->get().name));
}
}
editor->push_item(NULL);
memdelete(default_oldnode);
//reconnect signals
List<MethodInfo> sl;