diff options
Diffstat (limited to 'gtk/gtkpopover.c')
-rw-r--r-- | gtk/gtkpopover.c | 26 |
1 files changed, 8 insertions, 18 deletions
diff --git a/gtk/gtkpopover.c b/gtk/gtkpopover.c index 95b363e25e..44a0515625 100644 --- a/gtk/gtkpopover.c +++ b/gtk/gtkpopover.c @@ -1410,31 +1410,21 @@ gtk_popover_button_release (GtkWidget *widget, GdkEventButton *event) { GtkPopover *popover = GTK_POPOVER (widget); - GtkWidget *child, *event_widget; + GtkAllocation child_alloc; + GtkWidget *child; child = gtk_bin_get_child (GTK_BIN (widget)); if (!popover->priv->button_pressed) return GDK_EVENT_PROPAGATE; - event_widget = gtk_get_event_widget ((GdkEvent *) event); - - if (child && event->window == gtk_widget_get_window (widget)) - { - GtkAllocation child_alloc; - - gtk_widget_get_allocation (child, &child_alloc); + gtk_widget_get_allocation (child, &child_alloc); - if (event->x < child_alloc.x || - event->x > child_alloc.x + child_alloc.width || - event->y < child_alloc.y || - event->y > child_alloc.y + child_alloc.height) - gtk_popover_popdown (popover); - } - else if (!gtk_widget_is_ancestor (event_widget, widget)) - { - gtk_popover_popdown (popover); - } + if (event->x < child_alloc.x || + event->x > child_alloc.x + child_alloc.width || + event->y < child_alloc.y || + event->y > child_alloc.y + child_alloc.height) + gtk_popover_popdown (popover); return GDK_EVENT_PROPAGATE; } |