Small correction to list ctrl and default button size.
text ctrl doesn't inherit BG colour anymore added missing file. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2589 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1424,6 +1424,14 @@ void wxListMainWindow::OnChar( wxKeyEvent &event )
|
||||
ke.SetEventObject( parent );
|
||||
if (parent->GetEventHandler()->ProcessEvent( ke )) return;
|
||||
|
||||
if (event.KeyCode() == WXK_TAB)
|
||||
{
|
||||
wxNavigationKeyEvent nevent;
|
||||
nevent.SetDirection( !event.ShiftDown() );
|
||||
nevent.SetCurrentFocus( m_parent );
|
||||
if (m_parent->GetEventHandler()->ProcessEvent( nevent )) return;
|
||||
}
|
||||
|
||||
/* no item -> nothing to do */
|
||||
if (!m_current)
|
||||
{
|
||||
|
Reference in New Issue
Block a user