Qt: Fix inverted delayed show condition in QtAsyncTaskWithProgressDialog

pull/3774/head v0.1-11580
Stenzek 3 months ago
parent 6931f890bb
commit e7f2f101c2
No known key found for this signature in database

@ -499,7 +499,7 @@ void QtAsyncTaskWithProgressDialog::SetAutoClose(bool enabled)
void QtAsyncTaskWithProgressDialog::EnsureShown()
{
if (!m_shown)
if (m_shown)
return;
m_shown = true;

Loading…
Cancel
Save