Commit f838feeb37f5d6dbc061119e17c2c803af42658c

Authored by Christopher Stone
1 parent f6931c10
Exists in master

undid some temporary debugging changes

robots/little_john/telemetry/code/monitor/version1/plot.py
... ... @@ -51,9 +51,9 @@ class Plot(pyglet.window.Window):
51 51  
52 52 def drawBackground(self):
53 53 """Draw the graph background, currently a plain colour"""
54   - #whitepattern = pyglet.image.SolidColorImagePattern(WHITE)
55   - #whitepattern.create_image(self.width, self.height).blit(0, 0)
56   - pyglet.image.SolidColorImagePattern(RED).create_image(self.width, self.height).blit(0, 0)
  54 + whitepattern = pyglet.image.SolidColorImagePattern(WHITE)
  55 + whitepattern.create_image(self.width, self.height).blit(0, 0)
  56 + #pyglet.image.SolidColorImagePattern(WHITE).create_image(self.width, self.height).blit(0, 0)
57 57  
58 58 def drawHeading(self):
59 59 """Draw a title for the graph (duplicated in the window titlebar"""
... ...