From 5f629abd8b89971872b0c2c2cdc8ea0035e8998d Mon Sep 17 00:00:00 2001 From: Sepalani Date: Sun, 14 Feb 2021 16:01:32 +0400 Subject: CodeViewWidget: Add WithDetailedUpdate to update CodeWidget This used to also update the function calls and callers. --- Source/Core/DolphinQt/Debugger/CodeWidget.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'Source/Core/DolphinQt/Debugger/CodeWidget.cpp') diff --git a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp index 4232a40695..627f5f2568 100644 --- a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp @@ -170,6 +170,7 @@ void CodeWidget::ConnectWidgets() connect(m_code_view, &CodeViewWidget::SymbolsChanged, this, &CodeWidget::UpdateSymbols); connect(m_code_view, &CodeViewWidget::BreakpointsChanged, this, [this] { emit BreakpointsChanged(); }); + connect(m_code_view, &CodeViewWidget::UpdateCodeWidget, this, &CodeWidget::Update); connect(m_code_view, &CodeViewWidget::RequestPPCComparison, this, &CodeWidget::RequestPPCComparison); -- cgit v1.2.3