From 1544d7d681b5dc1dcdbea60cf09fdb4fbafcf371 Mon Sep 17 00:00:00 2001 From: master0fdisaster <38867833+master0fdisaster@users.noreply.github.com> Date: Thu, 9 Aug 2018 15:22:52 +0200 Subject: [PATCH] Qt: Config/Interface: Fix "Show Active title in Window Title" Checkbox Makes the checkbox save when it's toggled. --- Source/Core/DolphinQt/Settings/InterfacePane.cpp | 1 + 1 file changed, 1 insertion(+) 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(),