From 4aa25d5aff6bb2d441538b235c6ea28300ce1088 Mon Sep 17 00:00:00 2001 From: XorUnison Date: Mon, 6 Jul 2020 21:54:20 +0200 Subject: [PATCH] Fixes an old FRAME_HEIGHT reference --- manim/camera/moving_camera.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manim/camera/moving_camera.py b/manim/camera/moving_camera.py index a092db1dab..f7e84986f3 100644 --- a/manim/camera/moving_camera.py +++ b/manim/camera/moving_camera.py @@ -36,7 +36,7 @@ def __init__(self, frame=None, **kwargs): """ digest_config(self, kwargs) if frame is None: - frame = ScreenRectangle(height=FRAME_HEIGHT) + frame = ScreenRectangle(height=config['frame_height']) frame.set_stroke( self.default_frame_stroke_color, self.default_frame_stroke_width,