Add icon to 'Exit' in tray context menu.

Also adds the icon to the 'Exit' option in the Rainmeter sub menu in a skin's context menu.
This commit is contained in:
Brian Ferguson 2013-04-03 10:31:19 -06:00
parent a903629fc4
commit add778cfea

View File

@ -2953,6 +2953,12 @@ void CRainmeter::ShowContextMenu(POINT pos, CMeterWindow* meterWindow)
HMENU menu = MenuTemplate::CreateMenu(s_Menu, _countof(s_Menu), GetString);
if (menu)
{
// Set the 'Exit' Rainmeter icon
MENUITEMINFO mii = {sizeof(mii)};
mii.fMask = MIIM_BITMAP;
mii.hbmpItem = HBMMENU_MBAR_CLOSE;
SetMenuItemInfo(menu, IDM_QUIT, FALSE, &mii);
SetMenuDefaultItem(menu, IDM_MANAGE, MF_BYCOMMAND);
if (_waccess(m_LogFile.c_str(), 0) == -1)