diff options
author | Matthias Clasen <mclasen@redhat.com> | 2020-05-13 18:27:18 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2020-05-13 18:27:18 -0400 |
commit | cea66139ae79f48fb2d4ae733813ac5dbb263cfa (patch) | |
tree | 4c288150b94d7c8777476a92e4a04efde1f8be43 /gtk/gtkflowbox.c | |
parent | c1658903b72fd4f045fdd6303a863eb5782139a6 (diff) | |
download | gtk+-cea66139ae79f48fb2d4ae733813ac5dbb263cfa.tar.gz |
flowbox: Make the children focusable again
This broke when the :focusable property was introduced.
The symptom was that keynav in the Emoji chooser did
not work anymore.
Diffstat (limited to 'gtk/gtkflowbox.c')
-rw-r--r-- | gtk/gtkflowbox.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/gtkflowbox.c b/gtk/gtkflowbox.c index f5afde78fb..26b78e3fa3 100644 --- a/gtk/gtkflowbox.c +++ b/gtk/gtkflowbox.c @@ -545,8 +545,9 @@ gtk_flow_box_child_class_init (GtkFlowBoxChildClass *class) static void gtk_flow_box_child_init (GtkFlowBoxChild *child) { + gtk_widget_set_focusable (GTK_WIDGET (child), TRUE); } - + /* Public API {{{2 */ /** |