mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-11 08:47:50 -06:00
Hide upload message progress when upload is done
CURA-7150
This commit is contained in:
parent
96d1e6385d
commit
1a4cb49eba
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ class CreateBackupJob(Job):
|
||||||
self._job_done.wait()
|
self._job_done.wait()
|
||||||
if self.backup_upload_error_message == "":
|
if self.backup_upload_error_message == "":
|
||||||
upload_message.setText(catalog.i18nc("@info:backup_status", "Your backup has finished uploading."))
|
upload_message.setText(catalog.i18nc("@info:backup_status", "Your backup has finished uploading."))
|
||||||
upload_message.setProgress(upload_message.getMaxProgress())
|
upload_message.setProgress(None) # Hide progress bar
|
||||||
else:
|
else:
|
||||||
# some error occurred. This error is presented to the user by DrivePluginExtension
|
# some error occurred. This error is presented to the user by DrivePluginExtension
|
||||||
upload_message.hide()
|
upload_message.hide()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue