diff --git a/src/managers/KeybindManager.cpp b/src/managers/KeybindManager.cpp index 882ed2af..2a5a824f 100644 --- a/src/managers/KeybindManager.cpp +++ b/src/managers/KeybindManager.cpp @@ -408,7 +408,7 @@ bool CKeybindManager::handleKeybinds(const uint32_t& modmask, const std::string& continue; } - if (pressed && k.release) { + if (pressed && k.release && k.handler != "global") { if (k.nonConsuming) continue; @@ -416,7 +416,7 @@ bool CKeybindManager::handleKeybinds(const uint32_t& modmask, const std::string& continue; } - if (!pressed && !k.release) { + if (!pressed && !k.release && k.handler != "global") { if (k.nonConsuming) continue;