aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAqa-Ib <[email protected]>2024-09-18 12:05:17 +0200
committerGitHub <[email protected]>2024-09-18 11:05:17 +0100
commit0564b46a5e9afbf2fb51a7198452342e43ba4637 (patch)
treeb86bfa6d83fec78a68939baad77b4c336f5f3307
parent3c9716acfd00c6ea1b7bcd1dc63f97b51cc09998 (diff)
downloadHyprland-0564b46a5e9afbf2fb51a7198452342e43ba4637.tar.gz
Hyprland-0564b46a5e9afbf2fb51a7198452342e43ba4637.zip
dispatchers: allow moveintogroup when floating (#7818)
This allows to use the moveintogroup dispatcher when windows are floating. I don't know why was this disabled in the first place though. Cheers!
-rw-r--r--src/managers/KeybindManager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/managers/KeybindManager.cpp b/src/managers/KeybindManager.cpp
index 2f593d74..dd35bc19 100644
--- a/src/managers/KeybindManager.cpp
+++ b/src/managers/KeybindManager.cpp
@@ -2730,7 +2730,7 @@ SDispatchResult CKeybindManager::moveIntoGroup(std::string args) {
const auto PWINDOW = g_pCompositor->m_pLastWindow.lock();
- if (!PWINDOW || PWINDOW->m_bIsFloating || PWINDOW->m_sGroupData.deny)
+ if (!PWINDOW || PWINDOW->m_sGroupData.deny)
return {};
auto PWINDOWINDIR = g_pCompositor->getWindowInDirection(PWINDOW, arg);