Browse Source

Legacy profiles are now loaded as quality_changes

CURA-2344
Jaime van Kessel 8 years ago
parent
commit
799e66c3ac
1 changed files with 2 additions and 1 deletions
  1. 2 1
      plugins/LegacyProfileReader/LegacyProfileReader.py

+ 2 - 1
plugins/LegacyProfileReader/LegacyProfileReader.py

@@ -130,5 +130,6 @@ class LegacyProfileReader(ProfileReader):
         if len(profile.getAllKeys()) == 0:
             Logger.log("i", "A legacy profile was imported but everything evaluates to the defaults, creating an empty profile.")
         profile.setDirty(True)
-        profile.addMetaDataEntry("type", "quality")
+        profile.addMetaDataEntry("type", "quality_changes")
+        profile.addMetaDataEntry("quality", "normal")
         return profile