From 8e3e01e87dd463335025dd7ac3ac6c72a1f47b0b Mon Sep 17 00:00:00 2001 From: AetherWing Date: Sun, 28 Jun 2026 23:27:07 +0800 Subject: [PATCH] fix(init): correct resolution tuple ordering in CFG_DEFAULTS --- manim/cli/init/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manim/cli/init/commands.py b/manim/cli/init/commands.py index 575fc2dd2d..3dbe2f6ab7 100644 --- a/manim/cli/init/commands.py +++ b/manim/cli/init/commands.py @@ -29,7 +29,7 @@ "background_color": "BLACK", "background_opacity": 1, "scene_names": "Default", - "resolution": (1920, 1080), + "resolution": (1080, 1920), } __all__ = ["select_resolution", "update_cfg", "project", "scene"]