1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

-Fixes a bunch of stdout errors, closes #2763 closes #2731

This commit is contained in:
Juan Linietsky
2016-01-23 19:51:51 -03:00
parent a2992d5955
commit 6c27df8df6
9 changed files with 23 additions and 13 deletions

View File

@@ -721,6 +721,9 @@ void SceneTreeEditor::_update_selection(TreeItem *item) {
NodePath np = item->get_metadata(0);
if (!has_node(np))
return;
Node *n=get_node(np);
if (!n)