[SHELL32] CMenuToolbarBase: Use COLOR_MENUTEXT color for the text color in normal menu items. CORE-13855

This commit is contained in:
Giannis Adamopoulos 2018-01-05 11:53:35 +02:00
parent 695147eaac
commit a671923037

View file

@ -206,6 +206,9 @@ HRESULT CMenuToolbarBase::OnCustomDraw(LPNMTBCUSTOMDRAW cdraw, LRESULT * theResu
}
else
{
// Set the text color, will be used by the internal drawing code
cdraw->clrText = GetSysColor(COLOR_MENUTEXT);
// Remove HOT and CHECKED flags (will restore HOT if necessary)
cdraw->nmcd.uItemState &= ~CDIS_HOT;