From b3d574e22d040a06f2fca50c6688dd4a4a783f18 Mon Sep 17 00:00:00 2001 From: bruvzg <7645683+bruvzg@users.noreply.github.com> Date: Tue, 31 Jan 2023 09:56:46 +0200 Subject: [PATCH] [Editor] Fix editor progress dialog auto closing on focus loss. --- editor/progress_dialog.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/editor/progress_dialog.cpp b/editor/progress_dialog.cpp index 37f941c7b29..9695a7042da 100644 --- a/editor/progress_dialog.cpp +++ b/editor/progress_dialog.cpp @@ -257,6 +257,7 @@ ProgressDialog::ProgressDialog() { add_child(main); main->set_anchors_and_offsets_preset(Control::PRESET_FULL_RECT); set_exclusive(true); + set_flag(Window::FLAG_POPUP, false); last_progress_tick = 0; singleton = this; cancel_hb = memnew(HBoxContainer);