F4 key flips the listbox in default (not extended UI) mode.
This commit is contained in:
parent
161a6b4d21
commit
6199da3955
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue