From 5fdcb5df81ca248e41b56e28bd8cd292cfd0cd83 Mon Sep 17 00:00:00 2001 From: Kelsi Date: Thu, 12 Mar 2026 00:05:55 -0700 Subject: [PATCH] Wire up TOGGLE_QUEST_LOG keybinding (Q key) to open quest log screen --- src/ui/game_screen.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ui/game_screen.cpp b/src/ui/game_screen.cpp index 3be86cbb..aa044474 100644 --- a/src/ui/game_screen.cpp +++ b/src/ui/game_screen.cpp @@ -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,