CodeViewWidget: Add WithDetailedUpdate to update CodeWidget

This used to also update the function calls and callers.
This commit is contained in:
Sepalani
2021-02-14 16:01:32 +04:00
parent 2f85b80b7b
commit 5f629abd8b
4 changed files with 21 additions and 7 deletions

View File

@ -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);