From 2db9f55669de8b5677f775707c2eb23e14db61a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20=C3=85dahl?= Date: Mon, 3 Feb 2014 23:01:34 +0100 Subject: [PATCH] window-x11: Fix offscreen window match expression MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jonas Ã…dahl https://bugzilla.gnome.org/show_bug.cgi?id=723564 --- src/core/window-x11.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/window-x11.c b/src/core/window-x11.c index eeabbbbd7..4866c659d 100644 --- a/src/core/window-x11.c +++ b/src/core/window-x11.c @@ -1295,7 +1295,7 @@ is_our_xwindow (MetaDisplay *display, return TRUE; /* Any windows created via meta_create_offscreen_window */ - if (attrs->override_redirect && attrs->x == -100 && attrs->height == -100 && attrs->width == 1 && attrs->height == 1) + if (attrs->override_redirect && attrs->x == -100 && attrs->y == -100 && attrs->width == 1 && attrs->height == 1) return TRUE; return FALSE;