DolphinQt: fix other widgets that use lambdas (capturing this) without setting the receiver

This commit is contained in:
iwubcode
2020-09-12 17:53:17 -05:00
parent a83bf8bc59
commit 2bb7d207b7
14 changed files with 31 additions and 31 deletions

View File

@ -45,7 +45,7 @@ FIFOAnalyzer::FIFOAnalyzer()
m_detail_list->setFont(Settings::Instance().GetDebugFont());
m_entry_detail_browser->setFont(Settings::Instance().GetDebugFont());
connect(&Settings::Instance(), &Settings::DebugFontChanged, [this] {
connect(&Settings::Instance(), &Settings::DebugFontChanged, this, [this] {
m_detail_list->setFont(Settings::Instance().GetDebugFont());
m_entry_detail_browser->setFont(Settings::Instance().GetDebugFont());
});