Distrib things,
Fixed typo in wxCheckListBox. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5201 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -190,7 +190,7 @@ gtk_listbox_key_press_callback( GtkWidget *widget, GdkEventKey *gdk_event, wxLis
|
||||
}
|
||||
|
||||
#if wxUSE_CHECKLISTBOX
|
||||
if ((gdk_event->keyval != ' ') && (listbox->m_hasCheckBoxes) && (!ret))
|
||||
if ((gdk_event->keyval == ' ') && (listbox->m_hasCheckBoxes) && (!ret))
|
||||
{
|
||||
int sel = listbox->GtkGetIndex( widget );
|
||||
|
||||
|
Reference in New Issue
Block a user