From 89aa5df711693f8f382427900711bd9979b6f945 Mon Sep 17 00:00:00 2001 From: Giovanni Campagna Date: Thu, 27 Feb 2014 14:45:10 +0100 Subject: [PATCH] display: fix inverted check from 75184d4c5582ef593c56bb77f3a88a7742e91816 I noticed it, Jasper noticed it, we agreed to change it, and then I forgot to do it before pushing... --- src/core/display.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/display.c b/src/core/display.c index 3631eebf0..2ae5db457 100644 --- a/src/core/display.c +++ b/src/core/display.c @@ -2388,7 +2388,7 @@ handle_input_xevent (MetaDisplay *display, if (!window) { /* Check if the window is a root window. */ - if (enter_event->root == enter_event->event) + if (enter_event->root != enter_event->event) break; if (enter_event->evtype == XI_FocusIn &&