mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-08-10 00:52:16 +00:00
Fix shutdown when called from tray callback (#1691)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user