Merge pull request #1746 from 3b1b/video-work

Change interaction-to-embed keybinding
This commit is contained in:
Grant Sanderson 2022-02-15 10:14:18 -08:00 committed by GitHub
commit 9d6a28bc29
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -631,7 +631,7 @@ class Scene(object):
self.quit_interaction = True
elif char == " " or symbol == 65363: # Space or right arrow
self.hold_on_wait = False
elif char == "e":
elif char == "e" and modifiers == 3: # ctrl + shift + e
self.embed(close_scene_on_exit=False)
def on_resize(self, width: int, height: int):