mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-06 08:09:19 +00:00
Qt: Implement missing hotkeys
This commit is contained in:
parent
cb02a4bb95
commit
ce32447726
3 changed files with 18 additions and 0 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue