Refresh Call Graph when renaming functions (#3049)

This commit is contained in:
Theofilos Pechlivanis 2022-11-01 22:01:56 +02:00 committed by GitHub
parent ae1e15b7a2
commit 22e8bf2381
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,6 +42,7 @@ CallGraphView::CallGraphView(CutterDockWidget *parent, MainWindow *main, bool gl
refreshDeferrer.registerFor(parent);
connect(&refreshDeferrer, &RefreshDeferrer::refreshNow, this, &CallGraphView::refreshView);
connect(Core(), &CutterCore::refreshAll, this, &SimpleTextGraphView::refreshView);
connect(Core(), &CutterCore::functionRenamed, this, &CallGraphView::refreshView);
}
void CallGraphView::showExportDialog()