DolphinQt: properly remove slot connection for ConfigChange when object is destructed

This commit is contained in:
iwubcode
2020-09-12 17:06:17 -05:00
parent b1fecbb71c
commit a83bf8bc59
5 changed files with 5 additions and 5 deletions

View File

@ -17,7 +17,7 @@ GraphicsRadioInt::GraphicsRadioInt(const QString& label, const Config::Info<int>
setChecked(Config::Get(m_setting) == m_value);
connect(this, &QRadioButton::toggled, this, &GraphicsRadioInt::Update);
connect(&Settings::Instance(), &Settings::ConfigChanged, [this] {
connect(&Settings::Instance(), &Settings::ConfigChanged, this, [this] {
QFont bf = font();
bf.setBold(Config::GetActiveLayerForConfig(m_setting) != Config::LayerType::Base);
setFont(bf);