diff options
author | vaxerski <[email protected]> | 2022-05-31 18:47:32 +0200 |
---|---|---|
committer | vaxerski <[email protected]> | 2022-05-31 18:47:32 +0200 |
commit | 0f8712ed64e0b8c81cbbaa38e76edca4ffd422be (patch) | |
tree | 895226400d0f2c4265b37d4c88217e0eaeb81e80 | |
parent | 3e28a8b6907eb3297dd4751ddcd13609c7a74f5b (diff) | |
download | Hyprland-0.2.1beta.tar.gz Hyprland-0.2.1beta.zip |
fix crash in moveWorkspaceToMonitorv0.2.1beta
-rw-r--r-- | src/managers/KeybindManager.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/managers/KeybindManager.cpp b/src/managers/KeybindManager.cpp index e931f716..a59fbad6 100644 --- a/src/managers/KeybindManager.cpp +++ b/src/managers/KeybindManager.cpp @@ -775,6 +775,11 @@ void CKeybindManager::moveWorkspaceToMonitor(std::string args) { const auto PWORKSPACE = g_pCompositor->getWorkspaceByID(WORKSPACEID); + if (!PWORKSPACE) { + Debug::log(ERR, "moveWorkspaceToMonitor workspace doesn't exist!"); + return; + } + g_pCompositor->moveWorkspaceToMonitor(PWORKSPACE, PMONITOR); } |