Qt: Fix inverted delayed show condition in QtAsyncTaskWithProgressDialog

This commit is contained in:
Stenzek
2026-07-06 21:33:26 +10:00
parent 6931f890bb
commit e7f2f101c2

View File

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