Change default window location

This commit is contained in:
Grant Sanderson 2020-08-12 13:23:04 -07:00
parent 960e4e13eb
commit 150b03427d

View file

@ -22,7 +22,8 @@ class Window(PygletWindow):
self.scene = scene
self.title = str(scene)
# Put at the top of the screen
self.position = (self.position[0], 0)
# self.position = (self.position[0], 0)
self.position = (512, 0)
mglw.activate_context(window=self)
self.timer = Timer()