mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Qt/Settings: Implement audio pane
This commit is contained in:
@ -121,6 +121,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);
|
||||
|
Reference in New Issue
Block a user