input: don't reset cursor movement timer on simulateMouseMovement (#3595)

Fixes #2570
This commit is contained in:
André Silva 2023-10-17 17:00:39 +01:00 committed by GitHub
parent 20e7ccd480
commit 784f8a88fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,8 +41,6 @@ void CInputManager::simulateMouseMovement() {
clock_gettime(CLOCK_MONOTONIC, &now);
m_vLastCursorPosFloored = m_vLastCursorPosFloored - Vector2D(1, 1); // hack: force the mouseMoveUnified to report without making this a refocus.
mouseMoveUnified(now.tv_sec * 1000 + now.tv_nsec / 10000000);
m_tmrLastCursorMovement.reset();
}
void CInputManager::sendMotionEventsToFocused() {