From e7f2f101c2489e68446deff6dae9083e7a2114ea Mon Sep 17 00:00:00 2001 From: Stenzek Date: Mon, 6 Jul 2026 21:33:26 +1000 Subject: [PATCH] Qt: Fix inverted delayed show condition in QtAsyncTaskWithProgressDialog --- src/duckstation-qt/qtprogresscallback.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/duckstation-qt/qtprogresscallback.cpp b/src/duckstation-qt/qtprogresscallback.cpp index 716070f03..1a4eb3b37 100644 --- a/src/duckstation-qt/qtprogresscallback.cpp +++ b/src/duckstation-qt/qtprogresscallback.cpp @@ -499,7 +499,7 @@ void QtAsyncTaskWithProgressDialog::SetAutoClose(bool enabled) void QtAsyncTaskWithProgressDialog::EnsureShown() { - if (!m_shown) + if (m_shown) return; m_shown = true;