diff options
author | Matthias Clasen <mclasen@redhat.com> | 2019-04-07 17:19:09 +0000 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2019-04-07 17:19:09 +0000 |
commit | b804235aea791a65f1c50668c4bc43d27a4922e8 (patch) | |
tree | d4ef6b18cba01e54fa3ab9201942eb5982eb7bd1 /gtk/gtktooltip.c | |
parent | 6bc32a3d5d2dd52d245a6c389214598e240422b0 (diff) | |
download | gtk+-b804235aea791a65f1c50668c4bc43d27a4922e8.tar.gz |
Add a flags argument to gtk_widget_pick
This will be used to let the inspector and other users
pick insensitive widgets again. For now, update all
callers to pass no flags, preserving the current
behavior.
Diffstat (limited to 'gtk/gtktooltip.c')
-rw-r--r-- | gtk/gtktooltip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtktooltip.c b/gtk/gtktooltip.c index f309fc7683..fafc80c8be 100644 --- a/gtk/gtktooltip.c +++ b/gtk/gtktooltip.c @@ -434,7 +434,7 @@ _gtk_widget_find_at_coords (GdkSurface *surface, if (!event_widget) return NULL; - picked_widget = gtk_widget_pick (event_widget, surface_x, surface_y); + picked_widget = gtk_widget_pick (event_widget, surface_x, surface_y, 0); if (picked_widget != NULL) gtk_widget_translate_coordinates (event_widget, picked_widget, surface_x, surface_y, widget_x, widget_y); |