Skip to content

Commit

Permalink
fix: wrong arg order regarding struct SKeybind
Browse files Browse the repository at this point in the history
  • Loading branch information
littleblack111 committed Nov 4, 2024
1 parent 0f961f4 commit cb82b33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/ConfigManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2261,7 +2261,7 @@ std::optional<std::string> CConfigManager::handleBind(const std::string& command

g_pKeybindManager->addKeybind(SKeybind{
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 {};
Expand Down

0 comments on commit cb82b33

Please sign in to comment.