From ef5a6835b27c17332651399ee99cd8c69adddcee Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Mon, 13 Nov 2017 17:31:04 +0100 Subject: [PATCH] window: Set ALL_EVENT_MASK This is a trivial commit that does a big change: We now ignore event masks. Further commits will clean up code, but if bisection ends up here, you know it's because code is getting delivered events that it weren't getting before. --- gdk/gdkwindow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdk/gdkwindow.c b/gdk/gdkwindow.c index 2bf1ac997d..2380aa618a 100644 --- a/gdk/gdkwindow.c +++ b/gdk/gdkwindow.c @@ -939,7 +939,7 @@ gdk_window_new (GdkDisplay *display, return NULL; } - window->event_mask = attributes->event_mask; + window->event_mask = attributes->event_mask | GDK_ALL_EVENTS_MASK; if (attributes->wclass == GDK_INPUT_OUTPUT) {