summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Garnacho <carlosg@gnome.org>2023-02-28 22:02:05 +0100
committerMarge Bot <marge-bot@gnome.org>2023-03-05 07:17:02 +0000
commit608d3019b6c8288fbfc7a916efcb8f55d5db040c (patch)
treee6e7e8632361441c3471e8d5a9f83dac5ec95e39
parent92792d6850aec1347152d1b0209a233d4af15252 (diff)
downloadmutter-608d3019b6c8288fbfc7a916efcb8f55d5db040c.tar.gz
x11: Ignore _NET_ACTIVE_WINDOW client messages while grabbed
When a X11 application is started, typically what happens is: - A startup notification token is created, with a _TIME%d suffix - The application being spawned receives it through the environment - (dbus piping, maybe) - The application replies the startup notification token, and fetches the timestamp from it - The application makes a _NET_ACTIVE_WINDOW client message request with this timestamp - Mutter handles this client request and activates/focuses the window Prevent this last step if windows are not interactable (e.g. there is a compositor grab) and ignore the focus request. This specifically applies to X11 clients requesting focus themselves, and unlike previous approaches, doesn't try to prevent focus changes that do come through interaction with Mutter/GNOME Shell. This should only break if applications do not observe _NET_ACTIVE_WINDOW and perform XSetInputFocus on themselves, but in that case the X11 keyboard focus is stolen from our hands already. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2878>
-rw-r--r--src/x11/window-x11.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/x11/window-x11.c b/src/x11/window-x11.c
index 0e7b7fd2f..a85eb9c37 100644
--- a/src/x11/window-x11.c
+++ b/src/x11/window-x11.c
@@ -3420,7 +3420,8 @@ meta_window_x11_client_message (MetaWindow *window,
event->xclient.data.l[4]); /* height */
}
else if (event->xclient.message_type ==
- x11_display->atom__NET_ACTIVE_WINDOW)
+ x11_display->atom__NET_ACTIVE_WINDOW &&
+ meta_display_windows_are_interactable (window->display))
{
MetaClientType source_indication;
guint32 timestamp;