mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-07 08:39:00 +00:00
Merge pull request #5984 from spycrab/qt_gecko
Qt/GameList: Implement "Gecko codes" Tab
This commit is contained in:
commit
743568f9d4
17 changed files with 443 additions and 6 deletions
|
@ -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};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue