Merge pull request #5652 from spycrab/qt_audio

Qt/Settings: Implement Audio tab
This commit is contained in:
shuffle2
2017-06-27 11:46:14 -07:00
committed by GitHub
10 changed files with 365 additions and 4 deletions

View File

@ -126,6 +126,11 @@ void MainWindow::CreateComponents()
m_settings_window = new SettingsWindow(this);
m_hotkey_window = new MappingWindow(this, 0);
connect(this, &MainWindow::EmulationStarted, m_settings_window,
&SettingsWindow::EmulationStarted);
connect(this, &MainWindow::EmulationStopped, m_settings_window,
&SettingsWindow::EmulationStopped);
InstallHotkeyFilter(m_hotkey_window);
InstallHotkeyFilter(m_controllers_window);
InstallHotkeyFilter(m_settings_window);