UpdaterCommon: Hide Updater before Dolphin quits

This commit is contained in:
spycrab 2019-06-23 19:47:18 +02:00
parent 5262f39026
commit dacba85a08
1 changed files with 2 additions and 2 deletions

View File

@ -496,6 +496,7 @@ void FatalError(const std::string& message)
{
fprintf(log_fp, "%s\n", message.c_str());
UI::SetVisible(true);
UI::Error(message);
UI::Stop();
}
@ -683,6 +684,7 @@ bool RunUpdater(std::vector<std::string> args)
}
UI::Init();
UI::SetVisible(false);
Options opts = std::move(*maybe_opts);
@ -707,8 +709,6 @@ bool RunUpdater(std::vector<std::string> args)
if (opts.parent_pid)
{
UI::SetDescription("Waiting for Dolphin to quit...");
fprintf(log_fp, "Waiting for parent PID %d to complete...\n", *opts.parent_pid);
auto pid = opts.parent_pid.value();