mirror of
https://github.com/hyprwm/Hyprland
synced 2025-02-17 01:22:08 +01:00
fix it again
This commit is contained in:
parent
027f29023c
commit
942efbcd77
1 changed files with 5 additions and 3 deletions
|
@ -130,9 +130,7 @@ void CKeybindManager::changeworkspace(std::string args) {
|
||||||
// Workspace doesn't exist, create and switch
|
// Workspace doesn't exist, create and switch
|
||||||
const auto PMONITOR = g_pCompositor->getMonitorFromCursor();
|
const auto PMONITOR = g_pCompositor->getMonitorFromCursor();
|
||||||
|
|
||||||
// we need to move XWayland windows to narnia or otherwise they will still process our cursor and shit
|
const auto OLDWORKSPACE = PMONITOR->activeWorkspace;
|
||||||
// and that'd be annoying as hell
|
|
||||||
g_pCompositor->fixXWaylandWindowsOnWorkspace(PMONITOR->activeWorkspace);
|
|
||||||
|
|
||||||
g_pCompositor->m_lWorkspaces.push_back(SWorkspace());
|
g_pCompositor->m_lWorkspaces.push_back(SWorkspace());
|
||||||
const auto PWORKSPACE = &g_pCompositor->m_lWorkspaces.back();
|
const auto PWORKSPACE = &g_pCompositor->m_lWorkspaces.back();
|
||||||
|
@ -141,4 +139,8 @@ void CKeybindManager::changeworkspace(std::string args) {
|
||||||
PWORKSPACE->monitorID = PMONITOR->ID;
|
PWORKSPACE->monitorID = PMONITOR->ID;
|
||||||
|
|
||||||
PMONITOR->activeWorkspace = workspaceToChangeTo;
|
PMONITOR->activeWorkspace = workspaceToChangeTo;
|
||||||
|
|
||||||
|
// we need to move XWayland windows to narnia or otherwise they will still process our cursor and shit
|
||||||
|
// and that'd be annoying as hell
|
||||||
|
g_pCompositor->fixXWaylandWindowsOnWorkspace(workspaceToChangeTo);
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue