mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-02 08:50:28 +00:00
file chooser: Fix key bindings
Key press handlers must chain up for key bindings to work.
This commit is contained in:
parent
59c04d5184
commit
a385ca1bb7
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user