From: Youness Alaoui Date: Wed, 15 Jul 2015 17:37:31 +0000 (-0400) Subject: Force the version upgrade all the time when using dev version X-Git-Tag: lulzbot-15.02.1-2.01~62 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=7ea4f5fa1b87d0b566f28bc429c0e5cc6d1e75a6;p=cura.git Force the version upgrade all the time when using dev version --- diff --git a/Cura/gui/app.py b/Cura/gui/app.py index 3caf494f..f433bdf1 100644 --- a/Cura/gui/app.py +++ b/Cura/gui/app.py @@ -161,6 +161,9 @@ class CuraApp(wx.App): profile.putPreference('last_run_version', version.getVersion(False)) profile.performVersionUpgrade() #newVersionDialog.newVersionDialog().Show() + if version.isDevVersion(): + profile.performVersionUpgrade() + setFullScreenCapable(self.mainWindow)