summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/plugins/qmlprofiler/qmlprofilermodelmanager.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/qmlprofiler/qmlprofilermodelmanager.cpp b/src/plugins/qmlprofiler/qmlprofilermodelmanager.cpp
index 8b5f0b6ebf..759233ce6b 100644
--- a/src/plugins/qmlprofiler/qmlprofilermodelmanager.cpp
+++ b/src/plugins/qmlprofiler/qmlprofilermodelmanager.cpp
@@ -320,9 +320,10 @@ void QmlProfilerModelManager::complete()
{
switch (state()) {
case QmlProfilerDataState::ProcessingData:
- // Load notes after the timeline models have been initialized.
- d->notesModel->loadData();
+ // Load notes after the timeline models have been initialized ...
+ // which happens on stateChanged(Done).
setState(QmlProfilerDataState::Done);
+ d->notesModel->loadData();
break;
case QmlProfilerDataState::AcquiringData:
// Make sure the trace fits into the time span.