mirror of
https://github.com/3b1b/manim.git
synced 2025-09-01 00:48:45 +00:00
Change copy frame position command
This commit is contained in:
parent
57d4732ef1
commit
a7765dcac3
1 changed files with 2 additions and 1 deletions
|
@ -48,6 +48,7 @@ RESIZE_KEY = 't'
|
||||||
COLOR_KEY = 'c'
|
COLOR_KEY = 'c'
|
||||||
INFORMATION_KEY = 'i'
|
INFORMATION_KEY = 'i'
|
||||||
CURSOR_KEY = 'k'
|
CURSOR_KEY = 'k'
|
||||||
|
COPY_FRAME_POSITION_KEY = 'p'
|
||||||
|
|
||||||
|
|
||||||
# Note, a lot of the functionality here is still buggy and very much a work in progress.
|
# Note, a lot of the functionality here is still buggy and very much a work in progress.
|
||||||
|
@ -504,7 +505,7 @@ class InteractiveScene(Scene):
|
||||||
self.toggle_selection_mode()
|
self.toggle_selection_mode()
|
||||||
elif char == "s" and modifiers == COMMAND_MODIFIER:
|
elif char == "s" and modifiers == COMMAND_MODIFIER:
|
||||||
self.save_selection_to_file()
|
self.save_selection_to_file()
|
||||||
elif char == PAN_3D_KEY and modifiers == COMMAND_MODIFIER:
|
elif char == "d" and modifiers == SHIFT_MODIFIER:
|
||||||
self.copy_frame_positioning()
|
self.copy_frame_positioning()
|
||||||
elif symbol in ARROW_SYMBOLS:
|
elif symbol in ARROW_SYMBOLS:
|
||||||
self.nudge_selection(
|
self.nudge_selection(
|
||||||
|
|
Loading…
Add table
Reference in a new issue