Disable the window icon till we find out why the MacOS crashes, and the windows version does not work.
This commit is contained in:
parent
870c4952fd
commit
7f27198e7b
3 changed files with 3 additions and 3 deletions
|
|
@ -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()
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue