chiark / gitweb /
Add warning when installing custom firmware
authordaid303 <daid303@gmail.com>
Mon, 15 Oct 2012 15:17:03 +0000 (17:17 +0200)
committerdaid303 <daid303@gmail.com>
Mon, 15 Oct 2012 15:17:03 +0000 (17:17 +0200)
Cura/gui/mainWindow.py

index 8545c9b45427cc97586e865a016cc7337cda45db..4cb5b604fa187458dcf3a99bc65b62e2db0a5617 100644 (file)
@@ -331,6 +331,8 @@ class mainWindow(configBase.configWindowBase):
                firmwareInstall.InstallFirmware()
 
        def OnCustomFirmware(self, e):
+               if profile.getPreference('machine_type') == 'ultimaker':
+                       wx.MessageBox('Warning: Installing a custom firmware does not garantee that you machine will function correctly, and could damage your machine.', 'Firmware update', wx.OK | wx.ICON_EXCLAMATION)
                dlg=wx.FileDialog(self, "Open firmware to upload", os.path.split(profile.getPreference('lastFile'))[0], style=wx.FD_OPEN|wx.FD_FILE_MUST_EXIST)
                dlg.SetWildcard("HEX file (*.hex)|*.hex;*.HEX")
                if dlg.ShowModal() == wx.ID_OK: