Commit dd5a1913 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

comctl32: Fix a logical operator typo.

parent c74c544c
......@@ -2014,7 +2014,7 @@ TOOLTIPS_SetFont (TOOLTIPS_INFO *infoPtr, HFONT hFont, BOOL redraw)
lf.lfWeight = FW_BOLD;
infoPtr->hTitleFont = CreateFontIndirectW(&lf);
if (redraw & (infoPtr->nCurrentTool != -1)) {
if (redraw && infoPtr->nCurrentTool != -1) {
FIXME("full redraw needed!\n");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment