diff options
| author | sowens99 <seanowens@comcast.net> | 2021-09-24 10:31:36 -0400 |
|---|---|---|
| committer | sowens99 <seanowens@comcast.net> | 2021-09-24 11:58:41 -0400 |
| commit | d5845ff281f268381adafedd0ef16740b09285cf (patch) | |
| tree | 466c2d81921a1fa64830185e54663a3d6f9579f6 /Source/Core/DolphinQt/MainWindow.cpp | |
| parent | 753a1595bfe2db1cd4d8312e992901fc3e4da5d8 (diff) | |
HotkeyScheduler: add PlayRecording hotkey support
This hotkey was not previously implemented in the scheduler, even though it's present in the hotkey menu.
Diffstat (limited to 'Source/Core/DolphinQt/MainWindow.cpp')
| -rw-r--r-- | Source/Core/DolphinQt/MainWindow.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp index f7f3f08d46..403f76ae67 100644 --- a/Source/Core/DolphinQt/MainWindow.cpp +++ b/Source/Core/DolphinQt/MainWindow.cpp @@ -590,6 +590,7 @@ void MainWindow::ConnectHotkeys() &MainWindow::SetStateSlot); connect(m_hotkey_scheduler, &HotkeyScheduler::StartRecording, this, &MainWindow::OnStartRecording); + connect(m_hotkey_scheduler, &HotkeyScheduler::PlayRecording, this, &MainWindow::OnPlayRecording); connect(m_hotkey_scheduler, &HotkeyScheduler::ExportRecording, this, &MainWindow::OnExportRecording); connect(m_hotkey_scheduler, &HotkeyScheduler::ConnectWiiRemote, this, |
