From a20de3581a1d1855d2e1b9588db1be15dfa85f05 Mon Sep 17 00:00:00 2001 From: ChrisTerBeke Date: Fri, 18 May 2018 10:08:00 +0200 Subject: [PATCH] Add info message when failed because of version mismatch --- cura/Backups/Backup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cura/Backups/Backup.py b/cura/Backups/Backup.py index 69718dd7c9..65d8f184ec 100644 --- a/cura/Backups/Backup.py +++ b/cura/Backups/Backup.py @@ -122,6 +122,9 @@ class Backup: if current_version != version_to_restore: # Cannot restore version older or newer than current because settings might have changed. # Restoring this will cause a lot of issues so we don't allow this for now. + self._showMessage( + self.catalog.i18nc("@info:backup_failed", + "Tried to restore a Cura backup that does not match your current version.")) return False version_data_dir = Resources.getDataStoragePath()