diff --git a/reactos/dll/win32/user32/windows/draw.c b/reactos/dll/win32/user32/windows/draw.c index 0289e3943ac..e194fe30aab 100644 --- a/reactos/dll/win32/user32/windows/draw.c +++ b/reactos/dll/win32/user32/windows/draw.c @@ -1023,6 +1023,8 @@ static BOOL UITOOLS95_DrawFrameMenu(HDC dc, LPRECT r, UINT uFlags) hFont = CreateFontIndirect(&lf); /* save font */ hOldFont = SelectObject(dc, hFont); + // FIXME selecting color doesn't work +#if 0 if(uFlags & DFCS_INACTIVE) { /* draw shadow */ @@ -1030,6 +1032,7 @@ static BOOL UITOOLS95_DrawFrameMenu(HDC dc, LPRECT r, UINT uFlags) TextOut(dc, r->left + 1, r->top + 1, &Symbol, 1); } SetTextColor(dc, GetSysColor((uFlags & DFCS_INACTIVE) ? COLOR_BTNSHADOW : COLOR_BTNTEXT)); +#endif /* draw selected symbol */ TextOut(dc, r->left, r->top, &Symbol, 1); /* restore previous settings */