diff options
| author | Léo Lam <leo@leolam.fr> | 2021-02-14 16:30:05 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-14 16:30:05 +0100 |
| commit | 6944eaa003743ef6dfaf52df362655d1e5b99592 (patch) | |
| tree | 6fb6227e269fc3fb01a1b8fedc23a4a5edae2d60 /Source/Core/DolphinQt/Debugger/CodeWidget.cpp | |
| parent | c33d944961c3d6b16c512c25bf9ea01f0041c66a (diff) | |
| parent | 5f629abd8b89971872b0c2c2cdc8ea0035e8998d (diff) | |
Merge pull request #9512 from sepalani/func-update
CodeViewWidget: Add WithDetailedUpdate to update CodeWidget
Diffstat (limited to 'Source/Core/DolphinQt/Debugger/CodeWidget.cpp')
| -rw-r--r-- | Source/Core/DolphinQt/Debugger/CodeWidget.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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); |
