From: daid Date: Tue, 3 Apr 2012 08:44:53 +0000 (+0200) Subject: Disable the window icon till we find out why the MacOS crashes, and the windows versi... X-Git-Tag: RC1~8 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=7f27198e7b7ee057d64c46dcd8cfde6be5466faf;p=cura.git Disable the window icon till we find out why the MacOS crashes, and the windows version does not work. --- diff --git a/Cura/gui/mainWindow.py b/Cura/gui/mainWindow.py index 20a00324..870e02df 100644 --- a/Cura/gui/mainWindow.py +++ b/Cura/gui/mainWindow.py @@ -36,7 +36,7 @@ class mainWindow(configBase.configWindowBase): super(mainWindow, self).__init__(title='Cura') wx.EVT_CLOSE(self, self.OnClose) - self.SetIcon(icon.getMainIcon()) + #self.SetIcon(icon.getMainIcon()) menubar = wx.MenuBar() fileMenu = wx.Menu() diff --git a/Cura/gui/printWindow.py b/Cura/gui/printWindow.py index 7eae41fd..f4c22e03 100644 --- a/Cura/gui/printWindow.py +++ b/Cura/gui/printWindow.py @@ -29,7 +29,7 @@ class printWindow(wx.Frame): self.bufferLineCount = 4 self.sendCnt = 0 - self.SetIcon(icon.getMainIcon()) + #self.SetIcon(icon.getMainIcon()) self.SetSizer(wx.BoxSizer()) self.panel = wx.Panel(self) diff --git a/Cura/gui/simpleMode.py b/Cura/gui/simpleMode.py index 13954fd1..1b498be7 100644 --- a/Cura/gui/simpleMode.py +++ b/Cura/gui/simpleMode.py @@ -20,7 +20,7 @@ class simpleModeWindow(configBase.configWindowBase): super(simpleModeWindow, self).__init__(title='Cura - Simple mode') wx.EVT_CLOSE(self, self.OnClose) - self.SetIcon(icon.getMainIcon()) + #self.SetIcon(icon.getMainIcon()) menubar = wx.MenuBar() fileMenu = wx.Menu()