From: Youness Alaoui Date: Wed, 3 Jun 2015 21:06:51 +0000 (-0400) Subject: change the default order to 999 so unordered items go to the end X-Git-Tag: lulzbot-15.02.1-2.01~55^2~9 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=5a71d3453cf42a6b3d97811f62c85faad0d82fa5;p=cura.git change the default order to 999 so unordered items go to the end --- 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()