diff options
| author | master0fdisaster <38867833+master0fdisaster@users.noreply.github.com> | 2018-08-09 15:22:52 +0200 |
|---|---|---|
| committer | master0fdisaster <38867833+master0fdisaster@users.noreply.github.com> | 2018-08-14 17:22:30 +0200 |
| commit | 1544d7d681b5dc1dcdbea60cf09fdb4fbafcf371 (patch) | |
| tree | 468984a151341fe1b0521a6f7584a7c96e998503 /Source | |
| parent | bc3cc01cc986b4b7d56c7d25898ed572e75c36a9 (diff) | |
Qt: Config/Interface: Fix "Show Active title in Window Title" Checkbox
Makes the checkbox save when it's toggled.
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/DolphinQt/Settings/InterfacePane.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/DolphinQt/Settings/InterfacePane.cpp b/Source/Core/DolphinQt/Settings/InterfacePane.cpp index 92efac4a3c..aafe1e56bf 100644 --- a/Source/Core/DolphinQt/Settings/InterfacePane.cpp +++ b/Source/Core/DolphinQt/Settings/InterfacePane.cpp @@ -200,6 +200,7 @@ void InterfacePane::ConnectLayout() &InterfacePane::OnSaveConfig); connect(m_checkbox_confirm_on_stop, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_checkbox_use_panic_handlers, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); + connect(m_checkbox_show_active_title, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_checkbox_enable_osd, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_checkbox_pause_on_focus_lost, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig); connect(m_checkbox_hide_mouse, &QCheckBox::toggled, &Settings::Instance(), |
