mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-04-27 05:23:51 +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_;
|
showRaidFrames_ = !showRaidFrames_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (KeybindingManager::getInstance().isActionPressed(KeybindingManager::Action::TOGGLE_QUEST_LOG)) {
|
||||||
|
questLogScreen.toggle();
|
||||||
|
}
|
||||||
|
|
||||||
// Action bar keys (1-9, 0, -, =)
|
// Action bar keys (1-9, 0, -, =)
|
||||||
static const SDL_Scancode actionBarKeys[] = {
|
static const SDL_Scancode actionBarKeys[] = {
|
||||||
SDL_SCANCODE_1, SDL_SCANCODE_2, SDL_SCANCODE_3, SDL_SCANCODE_4,
|
SDL_SCANCODE_1, SDL_SCANCODE_2, SDL_SCANCODE_3, SDL_SCANCODE_4,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue