From 5994267b29a3dbc7390880c7556cb3c70e3cc352 Mon Sep 17 00:00:00 2001 From: daid Date: Fri, 13 Apr 2012 12:18:51 +0200 Subject: [PATCH] With the fixes from PyroMani the MacOS version is much more stable and on-par with the Linux version. So the warning message can be removed. --- Cura/gui/mainWindow.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Cura/gui/mainWindow.py b/Cura/gui/mainWindow.py index 965a4e0..261f640 100644 --- a/Cura/gui/mainWindow.py +++ b/Cura/gui/mainWindow.py @@ -21,8 +21,6 @@ from util import version def main(): app = wx.App(False) if profile.getPreference('wizardDone') == 'False': - if os.name == 'darwin': - wx.MessageBox('The MacOS version of Cura is experimental.\nThere are still UI/usability bugs. Check the issue list at:\nhttps://github.com/daid/Cura/issues\nfor details.\nPlease report any extra issue you find.', 'MacOS Warning', wx.OK | wx.ICON_INFORMATION) configWizard.configWizard() profile.putPreference("wizardDone", "True") if profile.getPreference('startMode') == 'Simple':