From af923a2327f4b6c9a306f2e626eddb6ce59f906b Mon Sep 17 00:00:00 2001 From: Splines Date: Sun, 10 Nov 2024 19:10:53 +0100 Subject: [PATCH] Add docstring to user-facing focus() method --- manimlib/scene/scene.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/manimlib/scene/scene.py b/manimlib/scene/scene.py index 09efe2ab..e9bd9fb4 100644 --- a/manimlib/scene/scene.py +++ b/manimlib/scene/scene.py @@ -987,6 +987,9 @@ class Scene(object): pass def focus(self) -> None: + """ + Puts focus on the ManimGL window. + """ if not self.window: return self.window.focus()