From 5a71d3453cf42a6b3d97811f62c85faad0d82fa5 Mon Sep 17 00:00:00 2001 From: Youness Alaoui Date: Wed, 3 Jun 2015 17:06:51 -0400 Subject: [PATCH] change the default order to 999 so unordered items go to the end --- Cura/util/resources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cura/util/resources.py b/Cura/util/resources.py index 0c790b01..e2a8fedb 100644 --- a/Cura/util/resources.py +++ b/Cura/util/resources.py @@ -141,7 +141,7 @@ class ProfileIni(object): try: self.order = int(self._getProfileInfo(self.ini, 'order')) except: - self.order = 0 + self.order = 999 def _getProfileInfo(self, ini_file, key): cp = configparser.ConfigParser() -- 2.30.2