From 656d079ffcde8b288d7c1d3694178911001e85c8 Mon Sep 17 00:00:00 2001 From: "A. Walton" Date: Wed, 16 Oct 2013 22:39:21 -0400 Subject: [PATCH] screen: Name the guard window So that extensons can recognize it, for the case where they want to watch the window list. https://bugzilla.gnome.org/show_bug.cgi?id=710346 --- src/core/screen.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/core/screen.c b/src/core/screen.c index 5efc65ac8..c0ec71d40 100644 --- a/src/core/screen.c +++ b/src/core/screen.c @@ -476,6 +476,9 @@ create_guard_window (Display *xdisplay, MetaScreen *screen) CWEventMask|CWOverrideRedirect|CWBackPixel, &attributes); + /* https://bugzilla.gnome.org/show_bug.cgi?id=710346 */ + XStoreName (xdisplay, guard_window, "mutter guard window"); + { unsigned char mask_bits[XIMaskLen (XI_LASTEVENT)] = { 0 }; XIEventMask mask = { XIAllMasterDevices, sizeof (mask_bits), mask_bits };