shell32: autocomplete: Fix a logical AND to a bitwise AND.
This commit is contained in:
parent
a4fd5a1f40
commit
db74fed6d1
|
@ -450,7 +450,7 @@ static LRESULT APIENTRY ACEditSubclassProc(HWND hwnd, UINT uMsg, WPARAM wParam,
|
||||||
ShowWindow(This->hwndListBox, SW_HIDE);
|
ShowWindow(This->hwndListBox, SW_HIDE);
|
||||||
break;
|
break;
|
||||||
case WM_KILLFOCUS:
|
case WM_KILLFOCUS:
|
||||||
if ((This->options && ACO_AUTOSUGGEST) &&
|
if ((This->options & ACO_AUTOSUGGEST) &&
|
||||||
((HWND)wParam != This->hwndListBox))
|
((HWND)wParam != This->hwndListBox))
|
||||||
{
|
{
|
||||||
ShowWindow(This->hwndListBox, SW_HIDE);
|
ShowWindow(This->hwndListBox, SW_HIDE);
|
||||||
|
|
Loading…
Reference in New Issue