Qt: Implement missing hotkeys

This commit is contained in:
spycrab 2018-05-09 08:27:04 +02:00
commit ce32447726
3 changed files with 18 additions and 0 deletions

View file

@ -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();