Fixed #153
This commit is contained in:
parent
d6baf4bbee
commit
14b4a4a542
1 changed files with 2 additions and 2 deletions
|
|
@ -208,9 +208,9 @@ class mainWindow(configBase.configWindowBase):
|
|||
loadButton2 = wx.Button(self, -1, 'Load Dual')
|
||||
self.Bind(wx.EVT_BUTTON, lambda e: self._showModelLoadDialog(2), loadButton2)
|
||||
if extruderCount > 2:
|
||||
loadButton3 = wx.Button(self, -1, 'Load Tripple')
|
||||
loadButton3 = wx.Button(self, -1, 'Load Triple')
|
||||
self.Bind(wx.EVT_BUTTON, lambda e: self._showModelLoadDialog(3), loadButton3)
|
||||
if extruderCount > 2:
|
||||
if extruderCount > 3:
|
||||
loadButton4 = wx.Button(self, -1, 'Load Quad')
|
||||
self.Bind(wx.EVT_BUTTON, lambda e: self._showModelLoadDialog(4), loadButton4)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue