diff --git a/Source/Core/DolphinQt2/HotkeyScheduler.cpp b/Source/Core/DolphinQt2/HotkeyScheduler.cpp index f9067e5981..b138a4c7cb 100644 --- a/Source/Core/DolphinQt2/HotkeyScheduler.cpp +++ b/Source/Core/DolphinQt2/HotkeyScheduler.cpp @@ -155,8 +155,13 @@ void HotkeyScheduler::Run() // Fullscreen if (IsHotkey(HK_FULLSCREEN)) + { emit FullScreenHotkey(); + // Prevent fullscreen from getting toggled too often + Common::SleepCurrentThread(100); + } + // Pause and Unpause if (IsHotkey(HK_PLAY_PAUSE)) emit TogglePauseHotkey();