diff options
| author | JosJuice <josjuice@gmail.com> | 2017-07-23 15:29:43 +0200 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2017-07-23 15:29:43 +0200 |
| commit | bb3bbb288752cd2122d86f6f0a4d1aeb3dda9dd6 (patch) | |
| tree | 85162b172f1deb6636d94fe5cc683b7bb3cc5ad4 /Source/Core | |
| parent | 22fbd65d4721e799dcf13089acf09546dc8ec058 (diff) | |
DolphinQt2: Fix saving "Use Built-In Database of Game Names"
This one is my fault too
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinQt2/Settings/InterfacePane.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/DolphinQt2/Settings/InterfacePane.cpp b/Source/Core/DolphinQt2/Settings/InterfacePane.cpp index c02bd84fe2..ef2d0ec749 100644 --- a/Source/Core/DolphinQt2/Settings/InterfacePane.cpp +++ b/Source/Core/DolphinQt2/Settings/InterfacePane.cpp @@ -107,6 +107,8 @@ void InterfacePane::ConnectLayout() connect(m_checkbox_auto_window, &QCheckBox::clicked, this, &InterfacePane::OnSaveConfig); connect(m_checkbox_top_window, &QCheckBox::clicked, this, &InterfacePane::OnSaveConfig); connect(m_checkbox_render_to_window, &QCheckBox::clicked, this, &InterfacePane::OnSaveConfig); + connect(m_checkbox_use_builtin_title_database, &QCheckBox::clicked, this, + &InterfacePane::OnSaveConfig); connect(m_combobox_theme, static_cast<void (QComboBox::*)(const QString&)>(&QComboBox::activated), &Settings::Instance(), &Settings::SetThemeName); connect(m_combobox_language, static_cast<void (QComboBox::*)(int)>(&QComboBox::activated), |
