compositor: update suspendstate on window move (#7396)

hyprctl dispatch -- movetoworkspacesilent x,"^kitty$" where X is the
current workspace makes kitty stops updating until current workspace is
changed while it is on the screen. update the suspend state after it has
been moved.
This commit is contained in:
Tom Englund
2024-08-18 21:02:46 +02:00
committed by GitHub
parent 50348a3ddb
commit 5afc4dc42e

View File

@@ -2737,6 +2737,7 @@ void CCompositor::moveWindowToWorkspaceSafe(PHLWINDOW pWindow, PHLWORKSPACE pWor
g_pCompositor->updateWorkspaceWindows(pWorkspace->m_iID);
g_pCompositor->updateWorkspaceWindows(pWindow->workspaceID());
g_pCompositor->updateSuspendedStates();
}
PHLWINDOW CCompositor::getForceFocus() {