From 1f3310874b0a38cac3547b85392f50a8244f8649 Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Fri, 23 Mar 2018 00:31:58 +0100 Subject: [PATCH] AutoUpdater: Don't show a spinning wheel cursor when delaying update --- Source/Core/UICommon/AutoUpdate.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/UICommon/AutoUpdate.cpp b/Source/Core/UICommon/AutoUpdate.cpp index 916176faaf..2554969257 100644 --- a/Source/Core/UICommon/AutoUpdate.cpp +++ b/Source/Core/UICommon/AutoUpdate.cpp @@ -134,6 +134,7 @@ void AutoUpdateChecker::TriggerUpdate(const AutoUpdateChecker::NewVersionInforma // Run the updater! std::wstring command_line = MakeUpdaterCommandLine(updater_flags); STARTUPINFO sinfo = {sizeof(info)}; + sinfo.dwFlags = STARTF_FORCEOFFFEEDBACK; // No hourglass cursor after starting the process. PROCESS_INFORMATION pinfo; INFO_LOG(COMMON, "Updater command line: %s", UTF16ToUTF8(command_line).c_str()); if (!CreateProcessW(UTF8ToUTF16(reloc_updater_path).c_str(),