浏览代码

Fix @export open scene button not working

Maxime Delorme 8 月之前
父节点
当前提交
ff107cbeeb
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      editor/plugins/packed_scene_editor_plugin.cpp

+ 1 - 1
editor/plugins/packed_scene_editor_plugin.cpp

@@ -36,7 +36,7 @@
 
 void PackedSceneEditor::_on_open_scene_pressed() {
 	// Using deferred call because changing scene updates the Inspector and thus destroys this plugin.
-	callable_mp(EditorNode::get_singleton(), &EditorNode::open_request).call_deferred(packed_scene->get_path());
+	callable_mp(EditorNode::get_singleton(), &EditorNode::open_request).call_deferred(packed_scene->get_path(), false);
 }
 
 void PackedSceneEditor::_notification(int p_what) {