mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
!RainmeterQuit bang doesn't show error message even if Rainmeter is not running.
This commit is contained in:
@ -174,7 +174,10 @@ void Bang(HWND hWnd, const WCHAR* command)
|
||||
}
|
||||
else
|
||||
{
|
||||
MessageBox(hWnd, L"Rainmeter is not running.\nUnable to send the !bang to it.", L"Rainmeter", MB_OK);
|
||||
if (wcsicmp(L"!rainmeterquit", command) != 0)
|
||||
{
|
||||
MessageBox(hWnd, L"Rainmeter is not running.\nUnable to send the !bang to it.", L"Rainmeter", MB_OK);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user