mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-15 11:05:58 +01:00
fix: wrong arg order regarding struct SKeybind
This commit is contained in:
parent
fd4c8a43ca
commit
29431a443f
1 changed files with 1 additions and 1 deletions
|
@ -2267,7 +2267,7 @@ std::optional<std::string> CConfigManager::handleBind(const std::string& command
|
||||||
|
|
||||||
g_pKeybindManager->addKeybind(SKeybind{
|
g_pKeybindManager->addKeybind(SKeybind{
|
||||||
parsedKey.key, KEYSYMS, parsedKey.keycode, parsedKey.catchAll, MOD, MODS, HANDLER, COMMAND, locked, m_szCurrentSubmap, DESCRIPTION, release,
|
parsedKey.key, KEYSYMS, parsedKey.keycode, parsedKey.catchAll, MOD, MODS, HANDLER, COMMAND, locked, m_szCurrentSubmap, DESCRIPTION, release,
|
||||||
repeat, mouse, nonConsuming, transparent, ignoreMods, multiKey, longPress, hasDescription, dontInhibit});
|
repeat, longPress, mouse, nonConsuming, transparent, ignoreMods, multiKey, hasDescription, dontInhibit});
|
||||||
}
|
}
|
||||||
|
|
||||||
return {};
|
return {};
|
||||||
|
|
Loading…
Reference in a new issue