mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-03-29 22:20:24 +00:00
Fix shutdown when called from tray callback (#1691)
This commit is contained in:
parent
84f1048c94
commit
cfd78b5ce7
@ -115,11 +115,12 @@ namespace system_tray {
|
||||
// If we're running in a service, return a special status to
|
||||
// tell it to terminate too, otherwise it will just respawn us.
|
||||
if (GetConsoleWindow() == NULL) {
|
||||
lifetime::exit_sunshine(ERROR_SHUTDOWN_IN_PROGRESS, false);
|
||||
lifetime::exit_sunshine(ERROR_SHUTDOWN_IN_PROGRESS, true);
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
|
||||
lifetime::exit_sunshine(0, false);
|
||||
lifetime::exit_sunshine(0, true);
|
||||
}
|
||||
|
||||
// Tray menu
|
||||
|
Loading…
x
Reference in New Issue
Block a user