From bd3bdc51b9965ec076fbaf8debc8e11d41ca4c3c Mon Sep 17 00:00:00 2001 From: "Owen W. Taylor" Date: Mon, 15 Jun 2009 23:50:13 -0400 Subject: [PATCH] Load NET_WM_USER_TIME from the right window On subsequent changes, if there is a NET_WM_USER_TIME_WINDOW, then read the property from that rather than from the main window. (Fix an accidental regression: the right Window was being computed but no longer passed in.) http://bugzilla.gnome.org/show_bug.cgi?id=585979 --- src/core/window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/window.c b/src/core/window.c index c515df8a2..c5e68a6ae 100644 --- a/src/core/window.c +++ b/src/core/window.c @@ -5869,7 +5869,7 @@ process_property_notify (MetaWindow *window, xid = window->user_time_window; } - meta_window_reload_property (window, event->atom, FALSE); + meta_window_reload_property_from_xwindow (window, xid, event->atom, FALSE); return TRUE; }