Qt/Hotkeys: Implement "Load from File" / "Save from File" hotkeys

This commit is contained in:
spycrab
2018-07-01 16:14:29 +02:00
parent 9cfcbfacbe
commit 32382438be
3 changed files with 10 additions and 0 deletions

View File

@ -483,6 +483,12 @@ void HotkeyScheduler::Run()
if (IsHotkey(HK_UNDO_SAVE_STATE))
emit StateSaveUndo();
if (IsHotkey(HK_LOAD_STATE_FILE))
emit StateLoadFile();
if (IsHotkey(HK_SAVE_STATE_FILE))
emit StateSaveFile();
}
}