From 97643d788d06312b511b29f72a88a8ec477afe62 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Wed, 11 May 2022 12:47:21 -0700 Subject: [PATCH] Default to showing animation progress in embedded runs --- manimlib/scene/scene.py | 1 + 1 file changed, 1 insertion(+) diff --git a/manimlib/scene/scene.py b/manimlib/scene/scene.py index a217414f..a5085d31 100644 --- a/manimlib/scene/scene.py +++ b/manimlib/scene/scene.py @@ -191,6 +191,7 @@ class Scene(object): # this will revert to the state of the scene at the first # point of running. def checkpoint_paste(skip=False, show_progress=False): + def checkpoint_paste(skip=False, show_progress=True): pasted = pyperclip.paste() line0 = pasted.lstrip().split("\n")[0] if line0.startswith("#"):