Merge pull request #120 from alexrj/gviz-hilight-fix

Bugfix: paths were not hilighted in preview during print anymore
master
kliment 2011-12-07 03:28:41 -08:00
commit a2d08fd7e1
1 changed files with 2 additions and 0 deletions

View File

@ -224,6 +224,8 @@ class gviz(wx.Panel):
gcode = gcode.lower().strip().split()
if len(gcode) == 0:
return
if gcode[0][0] == 'n':
gcode.pop(0)
def _readgcode():
target=self.lastpos[:]