mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-23 07:40:14 +00:00
Wire up TOGGLE_QUEST_LOG keybinding (Q key) to open quest log screen
This commit is contained in:
parent
1cab2e1156
commit
5fdcb5df81
1 changed files with 4 additions and 0 deletions
|
|
@ -1728,6 +1728,10 @@ void GameScreen::processTargetInput(game::GameHandler& gameHandler) {
|
|||
showRaidFrames_ = !showRaidFrames_;
|
||||
}
|
||||
|
||||
if (KeybindingManager::getInstance().isActionPressed(KeybindingManager::Action::TOGGLE_QUEST_LOG)) {
|
||||
questLogScreen.toggle();
|
||||
}
|
||||
|
||||
// Action bar keys (1-9, 0, -, =)
|
||||
static const SDL_Scancode actionBarKeys[] = {
|
||||
SDL_SCANCODE_1, SDL_SCANCODE_2, SDL_SCANCODE_3, SDL_SCANCODE_4,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue