mirror of
https://github.com/3b1b/manim.git
synced 2025-04-13 09:47:07 +00:00
Allow for using right arrow in presenter mode
This commit is contained in:
parent
559b96e7ce
commit
133724d29a
1 changed files with 1 additions and 1 deletions
|
@ -629,7 +629,7 @@ class Scene(object):
|
||||||
self.camera.frame.to_default_state()
|
self.camera.frame.to_default_state()
|
||||||
elif char == "q":
|
elif char == "q":
|
||||||
self.quit_interaction = True
|
self.quit_interaction = True
|
||||||
elif char == " ":
|
elif char == " " or symbol == 65363: # Space or right arrow
|
||||||
self.hold_on_wait = False
|
self.hold_on_wait = False
|
||||||
elif char == "e":
|
elif char == "e":
|
||||||
self.embed(close_scene_on_exit=False)
|
self.embed(close_scene_on_exit=False)
|
||||||
|
|
Loading…
Add table
Reference in a new issue