mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
DolphinQt: add warning if graphics mods are not enabled
This commit is contained in:
@ -540,6 +540,8 @@ void GameList::OpenProperties()
|
||||
properties->setAttribute(Qt::WA_DeleteOnClose, true);
|
||||
|
||||
connect(properties, &PropertiesDialog::OpenGeneralSettings, this, &GameList::OpenGeneralSettings);
|
||||
connect(properties, &PropertiesDialog::OpenGraphicsSettings, this,
|
||||
&GameList::OpenGraphicsSettings);
|
||||
|
||||
properties->show();
|
||||
}
|
||||
|
@ -55,6 +55,7 @@ signals:
|
||||
void NetPlayHost(const UICommon::GameFile& game);
|
||||
void SelectionChanged(std::shared_ptr<const UICommon::GameFile> game_file);
|
||||
void OpenGeneralSettings();
|
||||
void OpenGraphicsSettings();
|
||||
|
||||
private:
|
||||
void ShowHeaderContextMenu(const QPoint& pos);
|
||||
|
Reference in New Issue
Block a user