mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-22 23:30:14 +00:00
fix: correct keybinding defaults to match WoW standard keys
The keybinding manager had incorrect default key assignments: - TOGGLE_SPELLBOOK was S (should be P - WoW standard) - TOGGLE_TALENTS was K (should be N - WoW standard) These mismatched the actual hardcoded keys in spellbook_screen.cpp (P) and talent_screen.cpp (N), as well as user expectations from standard WoW. Update keybinding defaults to align with WoW conventions and the actual UI implementations that are using these keys.
This commit is contained in:
parent
82d00c94c0
commit
46365f4738
1 changed files with 2 additions and 2 deletions
|
|
@ -18,8 +18,8 @@ void KeybindingManager::initializeDefaults() {
|
|||
// Set default keybindings
|
||||
bindings_[static_cast<int>(Action::TOGGLE_CHARACTER_SCREEN)] = ImGuiKey_C;
|
||||
bindings_[static_cast<int>(Action::TOGGLE_INVENTORY)] = ImGuiKey_I;
|
||||
bindings_[static_cast<int>(Action::TOGGLE_SPELLBOOK)] = ImGuiKey_S;
|
||||
bindings_[static_cast<int>(Action::TOGGLE_TALENTS)] = ImGuiKey_K;
|
||||
bindings_[static_cast<int>(Action::TOGGLE_SPELLBOOK)] = ImGuiKey_P; // WoW standard key
|
||||
bindings_[static_cast<int>(Action::TOGGLE_TALENTS)] = ImGuiKey_N; // WoW standard key
|
||||
bindings_[static_cast<int>(Action::TOGGLE_QUESTS)] = ImGuiKey_L;
|
||||
bindings_[static_cast<int>(Action::TOGGLE_MINIMAP)] = ImGuiKey_M;
|
||||
bindings_[static_cast<int>(Action::TOGGLE_SETTINGS)] = ImGuiKey_Escape;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue