mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[WIN32K:NTUSER] Fix color indices for themes
CORE-14231 #resolve
This commit is contained in:
parent
e8ec23fcd2
commit
c22c6e3ba3
1 changed files with 4 additions and 4 deletions
|
@ -2511,11 +2511,11 @@ static void FASTCALL MENU_DrawMenuItem(PWND Wnd, PMENU Menu, PWND WndOwner, HDC
|
||||||
if (!(lpitem->fState & MF_HILITE) )
|
if (!(lpitem->fState & MF_HILITE) )
|
||||||
{
|
{
|
||||||
++rect.left; ++rect.top; ++rect.right; ++rect.bottom;
|
++rect.left; ++rect.top; ++rect.right; ++rect.bottom;
|
||||||
IntGdiSetTextColor(hdc, IntGetSysColor(COLOR_HIGHLIGHTTEXT));
|
IntGdiSetTextColor(hdc, IntGetSysColor(COLOR_BTNHIGHLIGHT));
|
||||||
DrawTextW( hdc, Text, i, &rect, uFormat );
|
DrawTextW( hdc, Text, i, &rect, uFormat );
|
||||||
--rect.left; --rect.top; --rect.right; --rect.bottom;
|
--rect.left; --rect.top; --rect.right; --rect.bottom;
|
||||||
}
|
}
|
||||||
IntGdiSetTextColor(hdc, IntGetSysColor(COLOR_GRAYTEXT));
|
IntGdiSetTextColor(hdc, IntGetSysColor(COLOR_BTNSHADOW));
|
||||||
}
|
}
|
||||||
DrawTextW( hdc, Text, i, &rect, uFormat);
|
DrawTextW( hdc, Text, i, &rect, uFormat);
|
||||||
|
|
||||||
|
@ -2538,11 +2538,11 @@ static void FASTCALL MENU_DrawMenuItem(PWND Wnd, PMENU Menu, PWND WndOwner, HDC
|
||||||
if (!(lpitem->fState & MF_HILITE) )
|
if (!(lpitem->fState & MF_HILITE) )
|
||||||
{
|
{
|
||||||
++rect.left; ++rect.top; ++rect.right; ++rect.bottom;
|
++rect.left; ++rect.top; ++rect.right; ++rect.bottom;
|
||||||
IntGdiSetTextColor(hdc, IntGetSysColor(COLOR_HIGHLIGHTTEXT));
|
IntGdiSetTextColor(hdc, IntGetSysColor(COLOR_BTNHIGHLIGHT));
|
||||||
DrawTextW( hdc, Text + i + 1, -1, &rect, uFormat);
|
DrawTextW( hdc, Text + i + 1, -1, &rect, uFormat);
|
||||||
--rect.left; --rect.top; --rect.right; --rect.bottom;
|
--rect.left; --rect.top; --rect.right; --rect.bottom;
|
||||||
}
|
}
|
||||||
IntGdiSetTextColor(hdc, IntGetSysColor(COLOR_GRAYTEXT));
|
IntGdiSetTextColor(hdc, IntGetSysColor(COLOR_BTNSHADOW));
|
||||||
}
|
}
|
||||||
DrawTextW( hdc, Text + i + 1, -1, &rect, uFormat );
|
DrawTextW( hdc, Text + i + 1, -1, &rect, uFormat );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue