mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
comctl32: Fix a logical operator typo.
This commit is contained in:
parent
c74c544cc6
commit
dd5a1913ae
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue