Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cura
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2021-12-03 16:19:59 +0300
committerJaime van Kessel <nallath@gmail.com>2021-12-03 16:19:59 +0300
commitf999d990e030cf68a854db52579de26eb02f5d5b (patch)
tree2305b007e0dd3cc46222f6a8ba227a6b224ea11d /cura
parent167113922529c68347d6b3800d0c1b63897ab5a8 (diff)
Fix error message after a failed sync.
This fxes the issue where it would still show an error message if you first have a sync fail and then have one that succeeds CURA-8670
Diffstat (limited to 'cura')
-rw-r--r--cura/UltimakerCloud/CloudMaterialSync.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/cura/UltimakerCloud/CloudMaterialSync.py b/cura/UltimakerCloud/CloudMaterialSync.py
index 6fd3a43e51..8bf8962eaf 100644
--- a/cura/UltimakerCloud/CloudMaterialSync.py
+++ b/cura/UltimakerCloud/CloudMaterialSync.py
@@ -57,6 +57,7 @@ class CloudMaterialSync(QObject):
self.sync_all_dialog.setProperty("syncModel", self)
self.sync_all_dialog.setProperty("pageIndex", 0) # Return to first page.
self.sync_all_dialog.setProperty("hasExportedUsb", False) # If the user exported USB before, reset that page.
+ self.sync_all_dialog.setProperty("syncStatusText", "") # Reset any previous error messages.
self.sync_all_dialog.show()
def _showSyncNewMaterialsMessage(self) -> None: