Give canonical name to user settings

All user profiles are named Current settings, so we should just give it the same name as well.

Contributes to issue CURA-844.
This commit is contained in:
Ghostkeeper 2016-09-21 17:26:12 +02:00
parent d962cad347
commit 7d41c1dcb3
No known key found for this signature in database
GPG key ID: 701948C5954A7385

View file

@ -99,7 +99,7 @@ class MachineInstance:
user_profile = configparser.ConfigParser(interpolation = None)
user_profile["general"] = {
"version": "2",
"name": self._name + "_current_settings",
"name": "Current settings",
"definition": type_name
}
user_profile["metadata"] = {