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

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()