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:
@@ -393,6 +393,17 @@ void wxComboBox::OnChar( wxKeyEvent &event )
|
|||||||
return;
|
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;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user