mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
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:
@ -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()
|
||||
|
Reference in New Issue
Block a user