From: Jasper St. Pierre Date: Sun, 5 Jul 2015 22:45:49 +0000 (-0700) Subject: gdkdisplay-x11: The leader window should be an input-only window X-Git-Tag: archive/raspbian/4.4.1+ds1-2+rpi1^2~18^2~24^2~9132 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=abc47d7faaf0fbea0389d84f199cd7ed0613872a;p=gtk4.git gdkdisplay-x11: The leader window should be an input-only window This prevents it from creating a _NET_WM_USER_TIME_WINDOW, which can confuse mutter / other window managers, and also me, when debugging. --- diff --git a/gdk/x11/gdkdisplay-x11.c b/gdk/x11/gdkdisplay-x11.c index d4be951bb0..dd608fa8de 100644 --- a/gdk/x11/gdkdisplay-x11.c +++ b/gdk/x11/gdkdisplay-x11.c @@ -1433,7 +1433,7 @@ _gdk_x11_display_open (const gchar *display_name) gdk_event_init (display); attr.window_type = GDK_WINDOW_TOPLEVEL; - attr.wclass = GDK_INPUT_OUTPUT; + attr.wclass = GDK_INPUT_ONLY; attr.x = 10; attr.y = 10; attr.width = 10;