Qt: Add help for general settings

This commit is contained in:
Connor McLaughlin
2020-03-22 13:17:03 +10:00
parent 4629cdfffc
commit e662f34f8b
3 changed files with 36 additions and 5 deletions

View File

@ -16,7 +16,7 @@ SettingsDialog::SettingsDialog(QtHostInterface* host_interface, QWidget* parent
{
m_ui.setupUi(this);
m_general_settings = new GeneralSettingsWidget(host_interface, m_ui.settingsContainer);
m_general_settings = new GeneralSettingsWidget(host_interface, m_ui.settingsContainer, this);
m_console_settings = new ConsoleSettingsWidget(host_interface, m_ui.settingsContainer);
m_game_list_settings = new GameListSettingsWidget(host_interface, m_ui.settingsContainer);
m_hotkey_settings = new HotkeySettingsWidget(host_interface, m_ui.settingsContainer);