diff options
author | Matthias Clasen <mclasen@redhat.com> | 2020-04-08 07:43:28 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2020-04-09 17:50:29 -0400 |
commit | 632524f67954d84e8778b7ce2f2b9c24673b54d8 (patch) | |
tree | 2e26d60390c41ebec3cc3b324892f73aee08f54c /gtk/gtkfontchooserwidget.c | |
parent | 22e1827f840044ac19c5a090af8511fe37ffcab7 (diff) | |
download | gtk+-632524f67954d84e8778b7ce2f2b9c24673b54d8.tar.gz |
Reinstate expected focus behavior
After the :can-focus change in the previous commit, widgets
need to set suitable focus and grab_focus implementations
to implement the desired focus behavior.
This commit does that for all widgets.
Diffstat (limited to 'gtk/gtkfontchooserwidget.c')
-rw-r--r-- | gtk/gtkfontchooserwidget.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk/gtkfontchooserwidget.c b/gtk/gtkfontchooserwidget.c index be77f9bf5d..a492410331 100644 --- a/gtk/gtkfontchooserwidget.c +++ b/gtk/gtkfontchooserwidget.c @@ -49,7 +49,7 @@ #include "gtktextview.h" #include "gtktreeselection.h" #include "gtktreeview.h" -#include "gtkwidget.h" +#include "gtkwidgetprivate.h" #include "gtksettings.h" #include "gtkdialog.h" #include "gtkradiobutton.h" @@ -737,6 +737,8 @@ gtk_font_chooser_widget_class_init (GtkFontChooserWidgetClass *klass) widget_class->unroot = gtk_font_chooser_widget_unroot; widget_class->map = gtk_font_chooser_widget_map; widget_class->unmap = gtk_font_chooser_widget_unmap; + widget_class->focus = gtk_widget_focus_child; + widget_class->grab_focus = gtk_widget_grab_focus_child; gobject_class->finalize = gtk_font_chooser_widget_finalize; gobject_class->dispose = gtk_font_chooser_widget_dispose; |