diff --git a/Frontend/DashboardsViewer/content/delegates/ParticipantDelegate.qml b/Frontend/DashboardsViewer/content/delegates/ParticipantDelegate.qml index 3576b54..6ad4fb0 100644 --- a/Frontend/DashboardsViewer/content/delegates/ParticipantDelegate.qml +++ b/Frontend/DashboardsViewer/content/delegates/ParticipantDelegate.qml @@ -189,6 +189,11 @@ BaseDelegate { screenLoading.progressValue = (bytesReceived / bytesTotal) * 100 } } + onDownloadFinished: { + if (screenLoading !== undefined){ + screenLoading.visible = false; + } + } } FileDialog { diff --git a/Frontend/DashboardsViewer/content/delegates/SessionDelegate.qml b/Frontend/DashboardsViewer/content/delegates/SessionDelegate.qml index 10bb599..23a7f99 100644 --- a/Frontend/DashboardsViewer/content/delegates/SessionDelegate.qml +++ b/Frontend/DashboardsViewer/content/delegates/SessionDelegate.qml @@ -289,6 +289,11 @@ BaseDelegate { screenLoading.progressValue = (bytesReceived / bytesTotal) * 100 } } + onDownloadFinished: { + if (screenLoading !== undefined){ + screenLoading.visible = false; + } + } } FileDialog { id: saveFileDialog