Steven Hedges
Results
1
comments of
Steven Hedges
I made a PR fixing the issue. The pixel_width and pixel_height were being set out of order. ```python # manim/cli/init/commands.py if key == "resolution": cli_config["pixel_height"] = str(value[0]) cli_config["pixel_width"] = str(value[1])...