mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-08-05 06:31:57 -07:00
set last monitor and dont refocus in some cases (changeworkspace)
This commit is contained in:
@@ -658,9 +658,12 @@ void CKeybindManager::changeworkspace(std::string args) {
|
|||||||
|
|
||||||
if (g_pCompositor->cursorOnReservedArea()) // fix focus on bars etc
|
if (g_pCompositor->cursorOnReservedArea()) // fix focus on bars etc
|
||||||
g_pInputManager->refocus();
|
g_pInputManager->refocus();
|
||||||
} else
|
} else if (g_pCompositor->getWindowsOnWorkspace(PWORKSPACETOCHANGETO->m_iID) > 0)
|
||||||
g_pInputManager->refocus();
|
g_pInputManager->refocus();
|
||||||
|
|
||||||
|
// set the new monitor as the last (no warps would bug otherwise)
|
||||||
|
g_pCompositor->m_pLastMonitor = g_pCompositor->getMonitorFromID(PWORKSPACETOCHANGETO->m_iMonitorID);
|
||||||
|
|
||||||
// mark the monitor dirty
|
// mark the monitor dirty
|
||||||
g_pHyprRenderer->damageMonitor(PMONITOR);
|
g_pHyprRenderer->damageMonitor(PMONITOR);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user