Fix stuttering and disappearing of the toolbar when fullscreen (#300)

This fixes an issue where moving the mouse along the top edge of the
screen while fullscreened will cause a leave event to be triggered,
even though the mouse pointer is still inside the event box. This
caused the toolbar to disappear and/or stutter while moving the mouse
along the top edge.
This commit is contained in:
Stephen Collins 2019-05-13 01:23:03 -06:00 committed by JosephMcc
parent aa7dabad39
commit 17062aaa18
1 changed files with 16 additions and 1 deletions

View File

@ -2351,7 +2351,22 @@ on_fullscreen_controls_leave_notify_event (GtkWidget *widget,
GdkEventCrossing *event,
XedWindow *window)
{
gtk_revealer_set_reveal_child (GTK_REVEALER (window->priv->fullscreen_controls), FALSE);
GdkWindow *gdk_window;
GdkDevice *device;
GdkSeat *seat;
gint x, y;
seat = gdk_display_get_default_seat (gdk_display_get_default ());
device = gdk_seat_get_pointer (seat);
gdk_window = gtk_widget_get_parent_window (widget);
gdk_window_get_device_position (gdk_window, device, &x, &y, NULL);
// sometimes the leave event is erroneously triggered when y = 0
if (y != 0)
{
gtk_revealer_set_reveal_child (GTK_REVEALER (window->priv->fullscreen_controls), FALSE);
}
return FALSE;
}