mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
Qt/Properties: 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()
|
||||
@ -551,6 +553,12 @@ void MainWindow::ShowAudioWindow()
|
||||
ShowSettingsWindow();
|
||||
}
|
||||
|
||||
void MainWindow::ShowGeneralWindow()
|
||||
{
|
||||
m_settings_window->SelectGeneralPane();
|
||||
ShowSettingsWindow();
|
||||
}
|
||||
|
||||
void MainWindow::ShowAboutDialog()
|
||||
{
|
||||
AboutDialog* about = new AboutDialog(this);
|
||||
|
Reference in New Issue
Block a user