mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 09:50:02 +00:00
- F4 key flips the listbox in default (not extended UI) mode.
svn path=/trunk/; revision=11837
This commit is contained in:
parent
2c9eb4b5f2
commit
0a7852d87c
1 changed files with 5 additions and 0 deletions
|
@ -2003,6 +2003,11 @@ static LRESULT ComboWndProc_common( HWND hwnd, UINT message,
|
||||||
CBRollUp( lphc, wParam == VK_RETURN, FALSE );
|
CBRollUp( lphc, wParam == VK_RETURN, FALSE );
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
else if ((wParam == VK_F4) && !(lphc->wState & CBF_EUI))
|
||||||
|
{
|
||||||
|
COMBO_FlipListbox( lphc, FALSE, FALSE );
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
if( lphc->wState & CBF_EDIT )
|
if( lphc->wState & CBF_EDIT )
|
||||||
hwndTarget = lphc->hWndEdit;
|
hwndTarget = lphc->hWndEdit;
|
||||||
|
|
Loading…
Reference in a new issue