input: update surface input on changeworkspace

This commit is contained in:
Vaxry 2023-06-09 12:19:48 +02:00
parent d123835ef5
commit cf37922d42

View file

@ -816,6 +816,7 @@ void CKeybindManager::changeworkspace(std::string args) {
if (pWorkspaceToChangeTo->m_bIsSpecialWorkspace) { if (pWorkspaceToChangeTo->m_bIsSpecialWorkspace) {
PMONITOR->setSpecialWorkspace(pWorkspaceToChangeTo); PMONITOR->setSpecialWorkspace(pWorkspaceToChangeTo);
g_pInputManager->simulateMouseMovement();
return; return;
} }
@ -839,6 +840,8 @@ void CKeybindManager::changeworkspace(std::string args) {
} }
pWorkspaceToChangeTo->m_sPrevWorkspace = {PCURRENTWORKSPACE->m_iID, PCURRENTWORKSPACE->m_szName}; pWorkspaceToChangeTo->m_sPrevWorkspace = {PCURRENTWORKSPACE->m_iID, PCURRENTWORKSPACE->m_szName};
g_pInputManager->simulateMouseMovement();
} }
void CKeybindManager::fullscreenActive(std::string args) { void CKeybindManager::fullscreenActive(std::string args) {