Also use F4 as short-cut for opening pop-up

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56072 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling 2008-10-04 09:14:14 +00:00
parent 7802da36fa
commit 3b354b9672

View File

@ -430,7 +430,8 @@ bool wxGenericComboCtrl::IsKeyPopupToggle(const wxKeyEvent& event) const
}
else
{
if ( keycode == WXK_DOWN && event.AltDown() )
if ( (keycode == WXK_DOWN && event.AltDown()) ||
(keycode == WXK_F4) )
return true;
}