Default to assuming OBS is shutting down

This reverts commit eea91b79b38b7c33561dc6c639d01dea8a802cdd.
This commit is contained in:
WarmUpTill 2026-04-28 20:54:49 +02:00
parent 1afd5b4187
commit 4ae505892c

View File

@ -310,7 +310,7 @@ bool HighlightUIElementsEnabled()
bool OBSIsShuttingDown()
{
return GetSwitcher() && GetSwitcher()->obsIsShuttingDown;
return !GetSwitcher() || GetSwitcher()->obsIsShuttingDown;
}
bool InitialLoadIsComplete()