From ec3e0b2f71044aa785791d82a121b606336be8a3 Mon Sep 17 00:00:00 2001 From: "Jerry (Xinyu Hou)" Date: Thu, 8 Mar 2018 16:40:23 +0000 Subject: [PATCH] #6267 Stop detecting mouse movement for local input --- src/lib/platform/XWindowsScreen.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib/platform/XWindowsScreen.cpp b/src/lib/platform/XWindowsScreen.cpp index 2516ba42..6cf0fea8 100644 --- a/src/lib/platform/XWindowsScreen.cpp +++ b/src/lib/platform/XWindowsScreen.cpp @@ -1391,8 +1391,6 @@ XWindowsScreen::handleSystemEvent(const Event& event, void* /*unused*/) case MotionNotify: if (m_isPrimary) { onMouseMove(xevent->xmotion); - } else if (!m_isOnScreen && (xevent->xmotion.send_event == False)) { - LOG ((CLOG_INFO "local input detected")); } return;