Skip to content

Commit 315f51b

Browse files
committed
Merge pull request #100654 from mdelorme/mdelorme/issue_100649
Fix `@export` open scene button not working
2 parents 6e23de0 + ff107cb commit 315f51b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editor/plugins/packed_scene_editor_plugin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
void PackedSceneEditor::_on_open_scene_pressed() {
3838
// Using deferred call because changing scene updates the Inspector and thus destroys this plugin.
39-
callable_mp(EditorNode::get_singleton(), &EditorNode::open_request).call_deferred(packed_scene->get_path());
39+
callable_mp(EditorNode::get_singleton(), &EditorNode::open_request).call_deferred(packed_scene->get_path(), false);
4040
}
4141

4242
void PackedSceneEditor::_notification(int p_what) {

0 commit comments

Comments
 (0)