restore wxComboBox's behaviour of reacting to <ENTER>

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52129 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2008-02-26 20:09:23 +00:00
parent 721a49c715
commit 5e9b723f6d

View File

@@ -393,6 +393,17 @@ void wxComboBox::OnChar( wxKeyEvent &event )
return;
}
}
// On enter key press, we must give a signal to default control,
// Otherwise, nothing happens when pressing Enter from inside a
// combo box in a dialog.
wxWindow *top_frame = wxGetTopLevelParent(this);
if( top_frame && GTK_IS_WINDOW(top_frame->m_widget) )
{
GtkWindow *window = GTK_WINDOW(top_frame->m_widget);
if ( window->default_widget )
gtk_widget_activate( window->default_widget );
}
break;
}