diff options
author | Matthias Clasen <mclasen@redhat.com> | 2019-04-07 21:36:40 +0000 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2019-04-08 08:42:25 -0400 |
commit | ef982b7d46125f206b59ae4222d26947bda86246 (patch) | |
tree | 02793fc177d5737d5177cfcc0bfa4e0191c5ec26 /gtk/gtkflowbox.c | |
parent | 1b362d1f01f114a6d5a324158a50a90e6b9a010b (diff) | |
download | gtk+-ef982b7d46125f206b59ae4222d26947bda86246.tar.gz |
Rename things
Rename the can-pick property to can-target,
and redo the pick flags with more descriptive names.
Diffstat (limited to 'gtk/gtkflowbox.c')
-rw-r--r-- | gtk/gtkflowbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkflowbox.c b/gtk/gtkflowbox.c index d134da1c69..e4bfb813fc 100644 --- a/gtk/gtkflowbox.c +++ b/gtk/gtkflowbox.c @@ -3928,7 +3928,7 @@ gtk_flow_box_get_child_at_pos (GtkFlowBox *box, gint x, gint y) { - GtkWidget *child = gtk_widget_pick (GTK_WIDGET (box), x, y, 0); + GtkWidget *child = gtk_widget_pick (GTK_WIDGET (box), x, y, GTK_PICK_DEFAULT); if (!child) return NULL; |