diff --git a/gdk/wayland/gdkeventsource.c b/gdk/wayland/gdkeventsource.c index 93f68dc3b6..cb335bd2c1 100644 --- a/gdk/wayland/gdkeventsource.c +++ b/gdk/wayland/gdkeventsource.c @@ -57,9 +57,6 @@ gdk_event_source_check(GSource *base) { GdkWaylandEventSource *source = (GdkWaylandEventSource *) base; - if (source->pfd.revents & (G_IO_ERR | G_IO_HUP)) - g_error ("Lost connection to wayland compositor"); - if (source->display->event_pause_count > 0) return FALSE; @@ -153,9 +150,12 @@ _gdk_wayland_display_queue_events (GdkDisplay *display) display_wayland = GDK_WAYLAND_DISPLAY (display); source = (GdkWaylandEventSource *) display_wayland->event_source; - if (source->pfd.revents) + if (source->pfd.revents & G_IO_IN) { wl_display_dispatch(display_wayland->wl_display); source->pfd.revents = 0; } + + if (source->pfd.revents & (G_IO_ERR | G_IO_HUP)) + g_error ("Lost connection to wayland compositor"); }