From 7acbc57bc7a7f6393923e13ec435cccbfffb250d Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Tue, 4 May 2021 18:05:11 +1000 Subject: [PATCH] [client] x11: remove pointer motion event mask This was added as a test when developing the overlapping window code and is not needed/used. --- client/displayservers/X11/x11.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/client/displayservers/X11/x11.c b/client/displayservers/X11/x11.c index 642e2a70..4a82641e 100644 --- a/client/displayservers/X11/x11.c +++ b/client/displayservers/X11/x11.c @@ -106,8 +106,7 @@ static bool x11Init(const LG_DSInitParams params) .event_mask = StructureNotifyMask | PropertyChangeMask | - ExposureMask | - PointerMotionMask + ExposureMask }; unsigned long swaMask = CWEventMask;