From eb17d9b518fff0e62d2ebee1184dd5478bd8aa39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Fri, 26 Jul 2013 11:41:44 +0200 Subject: [PATCH] Enable client message event handling --- events.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/events.cpp b/events.cpp index 7740021da3..98c8478c84 100644 --- a/events.cpp +++ b/events.cpp @@ -337,13 +337,13 @@ bool Workspace::workspaceEvent(xcb_generic_event_t *e) // fall through case XCB_FOCUS_OUT: return true; // always eat these, they would tell Qt that KWin is the active app -#if KWIN_QT5_PORTING - case ClientMessage: + case XCB_CLIENT_MESSAGE: #ifdef KWIN_BUILD_SCREENEDGES if (ScreenEdges::self()->isEntered(e)) return true; #endif break; +#if KWIN_QT5_PORTING case Expose: if (compositing() && (e->xexpose.window == rootWindow() // root window needs repainting