mirror of
https://github.com/3b1b/manim.git
synced 2025-09-19 04:41:56 +00:00
Merge pull request #1529 from calvinpelletier/window_size_bug_fix
fix issue #1509
This commit is contained in:
commit
d1a5089acc
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue