Commit ed1eb743fb1c36d35bdd68f6e59bf094437eec8e
1 parent
4ae9a7d5
Exists in
master
Added icon for personalised touch
Showing
2 changed files
with
1 additions
and
0 deletions
Show diff stats
674 Bytes
robots/little_john/telemetry/code/monitor/version1/main.py
... | ... | @@ -67,6 +67,7 @@ class Plot(pyglet.window.Window): |
67 | 67 | def __init__(self, series): |
68 | 68 | """Setup a the details of a plot, and create a corresponding window""" |
69 | 69 | pyglet.window.Window.__init__(self, resizable=True) |
70 | + self.set_icon(pyglet.image.load('32x32.png')) | |
70 | 71 | self.set_minimum_size(320,320) |
71 | 72 | self.series = series |
72 | 73 | self.font = 'Arkhip' | ... | ... |