aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorvaxerski <[email protected]>2023-01-09 20:52:24 +0100
committervaxerski <[email protected]>2023-01-09 20:52:24 +0100
commita572321f611d256f746366fbf16d36ed6a7de3e6 (patch)
tree02cc23ed44d6aa13a1d6e70cec746e3c94e84cb3
parentff118834829dd0db37e3622480756776b368bd4a (diff)
downloadHyprland-a572321f611d256f746366fbf16d36ed6a7de3e6.tar.gz
Hyprland-a572321f611d256f746366fbf16d36ed6a7de3e6.zip
remove old warn
-rw-r--r--src/config/ConfigManager.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/config/ConfigManager.cpp b/src/config/ConfigManager.cpp
index a82a96aa..99101d5a 100644
--- a/src/config/ConfigManager.cpp
+++ b/src/config/ConfigManager.cpp
@@ -711,11 +711,6 @@ void CConfigManager::handleBind(const std::string& command, const std::string& v
return;
}
- if (KEY == "exclam" || KEY == "asciicircum" || KEY == "at") { // just some
- parseError = "Your config contains (probably) wrong keys. The SHIFT keysym behavior has changed after v0.10.3beta. Please consult the wiki (Advanced configuring -> binds)";
- return;
- }
-
if (KEY != "") {
if (isNumber(KEY) && std::stoi(KEY) > 9)
g_pKeybindManager->addKeybind(SKeybind{"", std::stoi(KEY), MOD, HANDLER, COMMAND, locked, m_szCurrentSubmap, release, repeat, mouse});