Only process manager events with the correct atom.

2002-05-07  Anders Carlsson  <andersca@gnu.org>

	* gdk/x11/xsettings-client.c (xsettings_client_process_event):
	Only process manager events with the correct atom.
This commit is contained in:
Anders Carlsson
2002-05-07 14:46:13 +00:00
committed by Anders Carlsson
parent 6c29754a73
commit cecf4b5c3d
7 changed files with 32 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-05-07 Anders Carlsson <andersca@gnu.org>
* gdk/x11/xsettings-client.c (xsettings_client_process_event):
Only process manager events with the correct atom.
2002-05-07 Matthias Clasen <maclas@gmx.de> 2002-05-07 Matthias Clasen <maclas@gmx.de>
Fix for #79248: Fix for #79248:

View File

@ -1,3 +1,8 @@
2002-05-07 Anders Carlsson <andersca@gnu.org>
* gdk/x11/xsettings-client.c (xsettings_client_process_event):
Only process manager events with the correct atom.
2002-05-07 Matthias Clasen <maclas@gmx.de> 2002-05-07 Matthias Clasen <maclas@gmx.de>
Fix for #79248: Fix for #79248:

View File

@ -1,3 +1,8 @@
2002-05-07 Anders Carlsson <andersca@gnu.org>
* gdk/x11/xsettings-client.c (xsettings_client_process_event):
Only process manager events with the correct atom.
2002-05-07 Matthias Clasen <maclas@gmx.de> 2002-05-07 Matthias Clasen <maclas@gmx.de>
Fix for #79248: Fix for #79248:

View File

@ -1,3 +1,8 @@
2002-05-07 Anders Carlsson <andersca@gnu.org>
* gdk/x11/xsettings-client.c (xsettings_client_process_event):
Only process manager events with the correct atom.
2002-05-07 Matthias Clasen <maclas@gmx.de> 2002-05-07 Matthias Clasen <maclas@gmx.de>
Fix for #79248: Fix for #79248:

View File

@ -1,3 +1,8 @@
2002-05-07 Anders Carlsson <andersca@gnu.org>
* gdk/x11/xsettings-client.c (xsettings_client_process_event):
Only process manager events with the correct atom.
2002-05-07 Matthias Clasen <maclas@gmx.de> 2002-05-07 Matthias Clasen <maclas@gmx.de>
Fix for #79248: Fix for #79248:

View File

@ -1,3 +1,8 @@
2002-05-07 Anders Carlsson <andersca@gnu.org>
* gdk/x11/xsettings-client.c (xsettings_client_process_event):
Only process manager events with the correct atom.
2002-05-07 Matthias Clasen <maclas@gmx.de> 2002-05-07 Matthias Clasen <maclas@gmx.de>
Fix for #79248: Fix for #79248:

View File

@ -511,7 +511,8 @@ xsettings_client_process_event (XSettingsClient *client,
if (xev->xany.window == RootWindow (client->display, client->screen)) if (xev->xany.window == RootWindow (client->display, client->screen))
{ {
if (xev->xany.type == ClientMessage && if (xev->xany.type == ClientMessage &&
xev->xclient.message_type == client->manager_atom) xev->xclient.message_type == client->manager_atom &&
xev->xclient.data.l[1] == client->xsettings_atom)
{ {
check_manager_window (client); check_manager_window (client);
return True; return True;