From 2bb7d207b74d35ca435bfc9a47c712996d353056 Mon Sep 17 00:00:00 2001 From: iwubcode Date: Sat, 12 Sep 2020 17:53:17 -0500 Subject: DolphinQt: fix other widgets that use lambdas (capturing this) without setting the receiver --- Source/Core/DolphinQt/Debugger/ThreadWidget.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Core/DolphinQt/Debugger/ThreadWidget.cpp') diff --git a/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp b/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp index eceb9a5a21..bf288f8b02 100644 --- a/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp @@ -41,10 +41,10 @@ ThreadWidget::ThreadWidget(QWidget* parent) : QDockWidget(parent) connect(Host::GetInstance(), &Host::UpdateDisasmDialog, this, &ThreadWidget::Update); - connect(&Settings::Instance(), &Settings::ThreadsVisibilityChanged, + connect(&Settings::Instance(), &Settings::ThreadsVisibilityChanged, this, [this](bool visible) { setHidden(!visible); }); - connect(&Settings::Instance(), &Settings::DebugModeToggled, [this](bool enabled) { + connect(&Settings::Instance(), &Settings::DebugModeToggled, this, [this](bool enabled) { setHidden(!enabled || !Settings::Instance().IsThreadsVisible()); }); } -- cgit v1.2.3