- F4 key flips the listbox in default (not extended UI) mode.

svn path=/trunk/; revision=11837
This commit is contained in:
Eric Kohl 2004-11-27 16:38:28 +00:00
parent 2c9eb4b5f2
commit 0a7852d87c

View file

@ -2003,6 +2003,11 @@ static LRESULT ComboWndProc_common( HWND hwnd, UINT message,
CBRollUp( lphc, wParam == VK_RETURN, FALSE );
return TRUE;
}
else if ((wParam == VK_F4) && !(lphc->wState & CBF_EUI))
{
COMBO_FlipListbox( lphc, FALSE, FALSE );
return TRUE;
}
if( lphc->wState & CBF_EDIT )
hwndTarget = lphc->hWndEdit;