summaryrefslogtreecommitdiff
path: root/gtk/gtkflowbox.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2020-05-13 18:27:18 -0400
committerMatthias Clasen <mclasen@redhat.com>2020-05-13 18:27:18 -0400
commitcea66139ae79f48fb2d4ae733813ac5dbb263cfa (patch)
tree4c288150b94d7c8777476a92e4a04efde1f8be43 /gtk/gtkflowbox.c
parentc1658903b72fd4f045fdd6303a863eb5782139a6 (diff)
downloadgtk+-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.c3
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 */
/**