file chooser: Fix key bindings

Key press handlers must chain up for key bindings to work.
This commit is contained in:
Matthias Clasen 2015-01-28 18:17:51 -05:00
parent 59c04d5184
commit a385ca1bb7

View File

@ -1253,6 +1253,9 @@ gtk_file_chooser_widget_key_press_event (GtkWidget *widget,
return TRUE;
}
if (GTK_WIDGET_CLASS (gtk_file_chooser_widget_parent_class)->key_press_event (widget, event))
return TRUE;
return FALSE;
}