Merge pull request #1529 from calvinpelletier/window_size_bug_fix

fix issue #1509
This commit is contained in:
Grant Sanderson 2021-06-14 09:42:41 -07:00 committed by GitHub
commit d1a5089acc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,7 +15,7 @@ class Window(PygletWindow):
cursor = True cursor = True
def __init__(self, scene, size=(1280, 720), **kwargs): def __init__(self, scene, size=(1280, 720), **kwargs):
super().__init__() super().__init__(size=size)
digest_config(self, kwargs) digest_config(self, kwargs)
self.scene = scene self.scene = scene