From 7ea4f5fa1b87d0b566f28bc429c0e5cc6d1e75a6 Mon Sep 17 00:00:00 2001 From: Youness Alaoui Date: Wed, 15 Jul 2015 13:37:31 -0400 Subject: [PATCH] Force the version upgrade all the time when using dev version --- Cura/gui/app.py | 3 +++ 1 file changed, 3 insertions(+) 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) -- 2.30.2