mirror of
https://github.com/hyprwm/Hypr.git
synced 2024-11-24 06:15:57 +01:00
fix ooga booga
This commit is contained in:
parent
46c282bad5
commit
62a1805360
1 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@ uint32_t KeybindManager::getKeyCodeFromName(std::string name) {
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
returnValue = returnValue.substr(returnValue.find_first_of('x') + 1);
|
returnValue = returnValue.substr(returnValue.find("0x") + 2);
|
||||||
returnValue = returnValue.substr(0, returnValue.find_first_of(' '));
|
returnValue = returnValue.substr(0, returnValue.find_first_of(' '));
|
||||||
|
|
||||||
Debug::log(LOG, "queried for key " + name + " -> response keysym " + returnValue);
|
Debug::log(LOG, "queried for key " + name + " -> response keysym " + returnValue);
|
||||||
|
@ -74,7 +74,7 @@ uint32_t KeybindManager::getKeyCodeFromName(std::string name) {
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
returnValue = returnValue.substr(returnValue.find_first_of('x') + 1);
|
returnValue = returnValue.substr(returnValue.find("0x") + 2);
|
||||||
returnValue = returnValue.substr(0, returnValue.find_first_of(' '));
|
returnValue = returnValue.substr(0, returnValue.find_first_of(' '));
|
||||||
|
|
||||||
Debug::log(LOG, "queried for key " + name + " -> response keysym " + returnValue);
|
Debug::log(LOG, "queried for key " + name + " -> response keysym " + returnValue);
|
||||||
|
|
Loading…
Reference in a new issue