mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 01:29:42 -06:00
Qt/Properties: Implement "Gecko codes" tab
This commit is contained in:
@ -239,6 +239,9 @@ void GameList::ShowContextMenu(const QPoint&)
|
||||
void GameList::OpenProperties()
|
||||
{
|
||||
PropertiesDialog* properties = new PropertiesDialog(this, *GetSelectedGame());
|
||||
|
||||
connect(properties, &PropertiesDialog::OpenGeneralSettings, this, &GameList::OpenGeneralSettings);
|
||||
|
||||
properties->show();
|
||||
}
|
||||
|
||||
|
@ -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&);
|
||||
|
Reference in New Issue
Block a user