Merge pull request #13448 from Dentomologist/fix_unresponsive_hotkeys_when_moving_overlay_during_framestep

DolphinQt: Fix unresponsive hotkeys when clicking overlay during a framestep
This commit is contained in:
JMC47 2025-05-01 21:27:30 -04:00 committed by GitHub
commit 7222779e21
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -291,7 +291,9 @@ void Host_RequestRenderWindowSize(int w, int h)
bool Host_UIBlocksControllerState()
{
return ImGui::GetCurrentContext() && ImGui::GetIO().WantCaptureKeyboard;
// TODO: Remove the Paused check once async presentation is implemented.
return ImGui::GetCurrentContext() && ImGui::GetIO().WantCaptureKeyboard &&
Core::GetState(Core::System::GetInstance()) != Core::State::Paused;
}
void Host_RefreshDSPDebuggerWindow()