Merge pull request #72439 from bruvzg/ed_pr_hide

[Editor] Fix editor progress dialog auto closing on focus loss.
This commit is contained in:
Rémi Verschelde 2023-01-31 10:54:08 +01:00
commit 99810d7a26
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 1 additions and 0 deletions

View File

@ -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);