mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
[SHELL32] CMenuToolbarBase: Use COLOR_MENUTEXT color for the text color in normal menu items. CORE-13855
This commit is contained in:
parent
695147eaac
commit
a671923037
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue