mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Merge pull request #5984 from spycrab/qt_gecko
Qt/GameList: Implement "Gecko codes" Tab
This commit is contained in:
@ -279,6 +279,8 @@ void MainWindow::ConnectGameList()
|
||||
{
|
||||
connect(m_game_list, &GameList::GameSelected, this, &MainWindow::Play);
|
||||
connect(m_game_list, &GameList::NetPlayHost, this, &MainWindow::NetPlayHost);
|
||||
|
||||
connect(m_game_list, &GameList::OpenGeneralSettings, this, &MainWindow::ShowGeneralWindow);
|
||||
}
|
||||
|
||||
void MainWindow::ConnectRenderWidget()
|
||||
@ -550,6 +552,12 @@ void MainWindow::ShowAudioWindow()
|
||||
ShowSettingsWindow();
|
||||
}
|
||||
|
||||
void MainWindow::ShowGeneralWindow()
|
||||
{
|
||||
m_settings_window->SelectGeneralPane();
|
||||
ShowSettingsWindow();
|
||||
}
|
||||
|
||||
void MainWindow::ShowAboutDialog()
|
||||
{
|
||||
AboutDialog about{this};
|
||||
|
Reference in New Issue
Block a user