diff --git a/src/app/tape/tmainwindow.cpp b/src/app/tape/tmainwindow.cpp index 85c16198d..0ae3fde7e 100644 --- a/src/app/tape/tmainwindow.cpp +++ b/src/app/tape/tmainwindow.cpp @@ -3027,11 +3027,15 @@ QTableWidgetItem *TMainWindow::AddCell(const QString &text, int row, int column, //--------------------------------------------------------------------------------------------------------------------- void TMainWindow::RefreshData(bool freshCall) { + QGuiApplication::setOverrideCursor(QCursor(Qt::WaitCursor)); + data->ClearUniqueNames(); data->ClearVariables(VarType::Measurement); m->ReadMeasurements(currentDimensionA, currentDimensionB, currentDimensionC); RefreshTable(freshCall); + + QGuiApplication::restoreOverrideCursor(); } //---------------------------------------------------------------------------------------------------------------------