Skip to content

Commit 3ac4e36

Browse files
committedDec 2, 2024·
Added missing argument to deferred call to restart_editor in surface_upgrade_tool
1 parent d09d82d commit 3ac4e36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎editor/surface_upgrade_tool.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ void SurfaceUpgradeTool::prepare_upgrade() {
105105
EditorSettings::get_singleton()->set_project_metadata("surface_upgrade_tool", "resave_paths", resave_paths);
106106

107107
// Delay to avoid deadlocks, since this dialog can be triggered by loading a scene.
108-
callable_mp(EditorNode::get_singleton(), &EditorNode::restart_editor).call_deferred();
108+
callable_mp(EditorNode::get_singleton(), &EditorNode::restart_editor).call_deferred(false);
109109
}
110110

111111
// Ensure that the warnings and popups are skipped.

0 commit comments

Comments
 (0)
Please sign in to comment.