From: Ian Douglas Scott Date: Sat, 28 Aug 2021 00:57:01 +0000 (-0700) Subject: x11: Fix handling of `RRScreenChangeNotify`/`RRNotify` events X-Git-Tag: archive/raspbian/4.4.1+ds1-2+rpi1^2~18^2^2~124^2~13 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=ddbafa4d1af98d7ccdcc23d5ec14a08603f7fad0;p=gtk4.git x11: Fix handling of `RRScreenChangeNotify`/`RRNotify` events It seems these are sent with `xwindow` set to the root window, so this was failing to find a surface and get the screen from that. I'm not sure if there's a reason not to get the screen this way elsewhere in the function, but it seems this should be correct. This fixes the behavior of `gdk_x11_display_get_monitors()`, which wasn't correctly changing when monitors were added or removed. For instance, this python code was always showing the same number of monitors when one was turned off and on, but updates correctly with this change applied: ```python import gi gi.require_version("GLib", "2.0") gi.require_version("Gdk", "4.0") gi.require_version("Gtk", "4.0") from gi.repository import GLib, Gdk, Gtk def f(): print(len(Gdk.Display.get_default().get_monitors())) return True GLib.timeout_add_seconds(1, f) GLib.MainLoop().run() ``` --- diff --git a/gdk/x11/gdkdisplay-x11.c b/gdk/x11/gdkdisplay-x11.c index 33a3648f4e..a03690c788 100644 --- a/gdk/x11/gdkdisplay-x11.c +++ b/gdk/x11/gdkdisplay-x11.c @@ -1037,8 +1037,8 @@ gdk_x11_display_translate_event (GdkEventTranslator *translator, if (xevent->type - display_x11->xrandr_event_base == RRScreenChangeNotify || xevent->type - display_x11->xrandr_event_base == RRNotify) { - if (x11_screen) - _gdk_x11_screen_size_changed (x11_screen, xevent); + if (display_x11->screen) + _gdk_x11_screen_size_changed (display_x11->screen, xevent); } else #endif