listbox kbd handling buglet corrected (event.Skip() called even when no

selection)


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1208 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 1998-12-16 08:11:17 +00:00
parent 435fe83e74
commit e74bfc5d1a

View File

@ -1384,7 +1384,12 @@ void wxListMainWindow::OnChar( wxKeyEvent &event )
return;
}
*/
if (!m_current) return;
if ( !m_current )
{
event.Skip();
return;
}
switch (event.KeyCode())
{
case WXK_UP: