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:
parent
435fe83e74
commit
e74bfc5d1a
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user