combobox: Do not unconditionally stop events in event handler

Prevents combobox menus from being closed.
This commit is contained in:
Carlos Garnacho 2018-04-25 00:26:02 +02:00
parent ae7a677346
commit 0547c0999f

View File

@ -1948,10 +1948,10 @@ gtk_combo_box_menu_event (GtkWidget *widget,
/* The menu hasn't managed the
* event, forward it to the combobox
*/
gtk_bindings_activate_event (G_OBJECT (combo_box), (GdkEventKey *)event);
return gtk_bindings_activate_event (G_OBJECT (combo_box), (GdkEventKey *)event);
}
return TRUE;
return GDK_EVENT_PROPAGATE;
}
/*