Merge pull request #50 from PyroMani/master

Fixes #49 issue
master
daid 2012-04-11 14:55:05 -07:00
commit 1640b67c3b
1 changed files with 2 additions and 1 deletions

View File

@ -105,7 +105,8 @@ class printWindow(wx.Frame):
status += 'Line: %d/%d\n' % (self.printIdx, len(self.gcodeList))
if self.temp != None:
status += 'Temp: %d\n' % (self.temp)
self.statsText.SetLabel(status)
self.statsText.SetLabel(status.strip())
self.Layout()
def OnConnect(self, e):
if self.machineCom != None: