From 32eac869994ec1e84a81c6247b59c982f6619152 Mon Sep 17 00:00:00 2001 From: Konstantinos Karmas Date: Tue, 22 Jun 2021 16:24:43 +0200 Subject: [PATCH] Hide the backup window when the application is shutting down CURA-8313 --- plugins/CuraDrive/src/qml/components/BackupListItem.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/CuraDrive/src/qml/components/BackupListItem.qml b/plugins/CuraDrive/src/qml/components/BackupListItem.qml index 5cdb500b4e..7b539b03b9 100644 --- a/plugins/CuraDrive/src/qml/components/BackupListItem.qml +++ b/plugins/CuraDrive/src/qml/components/BackupListItem.qml @@ -71,6 +71,7 @@ Item text: catalog.i18nc("@button", "Restore") enabled: !CuraDrive.isCreatingBackup && !CuraDrive.isRestoringBackup onClicked: confirmRestoreDialog.visible = true + busy: CuraDrive.backupIdBeingRestored == modelData.backup_id && CuraDrive.isRestoringBackup } UM.SimpleButton