diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-12-10 00:12:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-10 00:12:42 +0100 |
commit | 4fd26d89c1ea3c5221bf3040a505eecd45f4bf61 (patch) | |
tree | 402e6695c2c8ef820a71c409003a288e86cac0a5 /editor/plugins/tile_set_editor_plugin.cpp | |
parent | aeae05a2f40e5759b68f1675b3f41a6643627214 (diff) | |
parent | 81a79e0c0e80aafd2c8a4d250202328176da676e (diff) |
Merge pull request #14480 from volzhs/startup-error
Fix get_edited_scene_root error at starting editor
Diffstat (limited to 'editor/plugins/tile_set_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/tile_set_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/tile_set_editor_plugin.cpp b/editor/plugins/tile_set_editor_plugin.cpp index eb2faa1ab1..b8c57fd959 100644 --- a/editor/plugins/tile_set_editor_plugin.cpp +++ b/editor/plugins/tile_set_editor_plugin.cpp @@ -343,7 +343,7 @@ AutotileEditor::AutotileEditor(EditorNode *p_editor) { split->add_child(property_editor); helper = memnew(AutotileEditorHelper(this)); - property_editor->edit(helper); + property_editor->call_deferred("edit", helper); // Editor |