mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Qt: Implement missing hotkeys
This commit is contained in:
@ -138,6 +138,17 @@ void HotkeyScheduler::Run()
|
||||
if (!Core::IsRunningAndStarted())
|
||||
continue;
|
||||
|
||||
if (IsHotkey(HK_OPEN))
|
||||
emit Open();
|
||||
|
||||
// Disc
|
||||
|
||||
if (IsHotkey(HK_EJECT_DISC))
|
||||
emit EjectDisc();
|
||||
|
||||
if (IsHotkey(HK_CHANGE_DISC))
|
||||
emit ChangeDisc();
|
||||
|
||||
// Fullscreen
|
||||
if (IsHotkey(HK_FULLSCREEN))
|
||||
emit FullScreenHotkey();
|
||||
|
Reference in New Issue
Block a user