Prevent WX_PROGRESS_REPORTER from dominating system

Raising the window on each updateUI prevents multitasking by stealing
focus from the current window.
This commit is contained in:
Seth Hillbrand 2022-03-18 15:49:00 -07:00
parent b3a319b77e
commit ba4b8bfa69
1 changed files with 0 additions and 5 deletions

View File

@ -83,11 +83,6 @@ bool WX_PROGRESS_REPORTER::updateUI()
Fit();
}
Raise();
if( IsFocusable() )
SetFocus();
bool diag = wxProgressDialog::Update( cur, message );
return diag;