From f999d990e030cf68a854db52579de26eb02f5d5b Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Fri, 3 Dec 2021 14:19:59 +0100 Subject: [PATCH] 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 --- cura/UltimakerCloud/CloudMaterialSync.py | 1 + 1 file changed, 1 insertion(+) 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: