diff options
| author | Matthias Clasen <mclasen@redhat.com> | 2019-04-07 13:02:54 +0000 |
|---|---|---|
| committer | Matthias Clasen <mclasen@redhat.com> | 2019-04-07 13:02:54 +0000 |
| commit | 9003609fc568817745dcde803180596737b3134e (patch) | |
| tree | 3c041e9464775c52aa220f04d9cc40aeec7632bc | |
| parent | f8a3d05ce1801c67df612c8f1aa15e1ce74050d9 (diff) | |
| download | gtk+-pick-insensitive.tar.gz | |
inspector: Allow picking insensitive widgets againpick-insensitive
Use the new argument to gtk_widget_pick to allow picking
insensitive widgets.
Closes: https://gitlab.gnome.org/GNOME/gtk/issues/51
| -rw-r--r-- | gtk/inspector/inspect-button.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/inspector/inspect-button.c b/gtk/inspector/inspect-button.c index a6e342a45b..a0f78dcb76 100644 --- a/gtk/inspector/inspect-button.c +++ b/gtk/inspector/inspect-button.c @@ -55,7 +55,7 @@ find_widget_at_pointer (GdkDevice *device) gdk_surface_get_device_position (gtk_widget_get_surface (widget), device, &x, &y, NULL); - widget = gtk_widget_pick (widget, x, y, TRUE); + widget = gtk_widget_pick (widget, x, y, FALSE); } return widget; |
