dispatchers: fix movecursor not updating client pos (#11672)

This commit is contained in:
0xFMD 2025-09-11 22:52:30 +03:00 committed by GitHub
parent 38169c8fdd
commit 797bfe905e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1908,6 +1908,7 @@ SDispatchResult CKeybindManager::moveCursor(std::string args) {
y = std::stoi(y_str);
g_pCompositor->warpCursorTo({x, y}, true);
g_pInputManager->simulateMouseMovement();
return {};
}