mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-08-04 22:22:00 -07:00
fix focusmonitor with named workspaces
This commit is contained in:
@@ -558,7 +558,12 @@ void CKeybindManager::focusMonitor(std::string arg) {
|
|||||||
if (isDirection(arg)) {
|
if (isDirection(arg)) {
|
||||||
const auto PMONITOR = g_pCompositor->getMonitorInDirection(arg[0]);
|
const auto PMONITOR = g_pCompositor->getMonitorInDirection(arg[0]);
|
||||||
if (PMONITOR) {
|
if (PMONITOR) {
|
||||||
changeworkspace(std::to_string(PMONITOR->activeWorkspace));
|
if (PMONITOR->activeWorkspace < 0) {
|
||||||
|
const auto PWORKSPACE = g_pCompositor->getWorkspaceByID(PMONITOR->activeWorkspace);
|
||||||
|
changeworkspace("name:" + PWORKSPACE->m_szName);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
changeworkspace(std::to_string(PMONITOR->activeWorkspace));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
Reference in New Issue
Block a user