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

This commit is contained in:
Eric Kohl 2004-11-29 17:51:23 +00:00 committed by Alexandre Julliard
parent 161a6b4d21
commit 6199da3955
1 changed files with 5 additions and 0 deletions

View File

@ -2005,6 +2005,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;