Fix mouse interaction in combo cell renderer

Pass the event on when calling gtk_cell_editable_start_editing.
https://bugzilla.gnome.org/show_bug.cgi?id=504901
This commit is contained in:
Matthias Clasen 2013-04-19 10:07:44 -04:00
parent 524ce7f88e
commit 163542f545

View File

@ -3440,7 +3440,7 @@ gtk_cell_area_activate_cell (GtkCellArea *area,
/* If the signal was successfully handled start the editing */
if (gtk_widget_get_parent (GTK_WIDGET (editable_widget)))
{
gtk_cell_editable_start_editing (editable_widget, NULL);
gtk_cell_editable_start_editing (editable_widget, event);
gtk_widget_grab_focus (GTK_WIDGET (editable_widget));
}
else