Skip to content

Commit 9d6a28b

Browse files
authored
Merge pull request #1746 from 3b1b/video-work
Change interaction-to-embed keybinding
2 parents 97ca42d + 06405d5 commit 9d6a28b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manimlib/scene/scene.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ def on_key_press(self, symbol, modifiers):
631631
self.quit_interaction = True
632632
elif char == " " or symbol == 65363: # Space or right arrow
633633
self.hold_on_wait = False
634-
elif char == "e":
634+
elif char == "e" and modifiers == 3: # ctrl + shift + e
635635
self.embed(close_scene_on_exit=False)
636636

637637
def on_resize(self, width: int, height: int):

0 commit comments

Comments
 (0)