- Fixed that [!RainmeterPluginBang "SomeMeasure Play"] did not work with iTunesPlugin

- Minor changes to illustro and Rainstaller
This commit is contained in:
Birunthan Mohanathas
2011-01-10 18:28:37 +00:00
parent 7eed591c93
commit dd4edd3df0
2 changed files with 6 additions and 2 deletions

View File

@ -718,6 +718,10 @@ void ExecuteBang(LPCTSTR args, UINT id)
{
command = COMMAND_PAUSE;
}
else if (_wcsicmp(args, L"Play") == 0)
{
command = COMMAND_PLAY;
}
else if (_wcsicmp(args, L"PlayPause") == 0)
{
command = COMMAND_PLAYPAUSE;