keybinds: simulate movement on empty focus after workspace change

This commit is contained in:
vaxerski 2023-09-13 11:36:41 +01:00
parent b884544ee6
commit 41e5f401c5

View File

@ -870,7 +870,10 @@ void CKeybindManager::changeworkspace(std::string args) {
} else
pWorkspaceToChangeTo->rememberPrevWorkspace(PCURRENTWORKSPACE);
g_pInputManager->sendMotionEventsToFocused();
if (!g_pCompositor->m_pLastFocus)
g_pInputManager->simulateMouseMovement();
else
g_pInputManager->sendMotionEventsToFocused();
}
void CKeybindManager::fullscreenActive(std::string args) {