Merge pull request #5984 from spycrab/qt_gecko

Qt/GameList: Implement "Gecko codes" Tab
This commit is contained in:
Leo Lam
2017-09-27 20:50:28 +02:00
committed by GitHub
17 changed files with 443 additions and 6 deletions

View File

@ -241,6 +241,9 @@ void GameList::ShowContextMenu(const QPoint&)
void GameList::OpenProperties()
{
PropertiesDialog* properties = new PropertiesDialog(this, *GetSelectedGame());
connect(properties, &PropertiesDialog::OpenGeneralSettings, this, &GameList::OpenGeneralSettings);
properties->show();
}

View File

@ -31,6 +31,7 @@ signals:
void GameSelected();
void NetPlayHost(const QString& game_id);
void SelectionChanged(QSharedPointer<GameFile> game_file);
void OpenGeneralSettings();
private:
void ShowContextMenu(const QPoint&);