Fix a minor layout issue when slicing multiple files at the same time and having dual extrusion.

This commit is contained in:
daid303 2012-12-20 10:04:51 +01:00
parent 2a4d2a94e1
commit 582e50bc82

View file

@ -302,7 +302,7 @@ class mainWindow(wx.Frame):
self.sizer.Detach(spp)
i = 2
for spp in self.progressPanelList:
self.sizer.Add(spp, (i,0), span=(1,4), flag=wx.EXPAND)
self.sizer.Add(spp, (i,0), span=(1,4 + self.extruderCount), flag=wx.EXPAND)
i += 1
self.sizer.Layout()