mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 07:09:48 -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()
|
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()
|
void Host_RefreshDSPDebuggerWindow()
|
||||||
|
Reference in New Issue
Block a user