From efe2b1edf1df06ea25e0d7b7ae1ce9ecab49783c Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 21 Oct 2013 15:00:22 +0000 Subject: Jump to Next/Previous Marker operators in the timeline menu, shortcuts are ctrl + shift + left/right arrow key. Patch #37142 by Henrik Aarnio, thanks! --- release/scripts/startup/bl_ui/space_time.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'release') diff --git a/release/scripts/startup/bl_ui/space_time.py b/release/scripts/startup/bl_ui/space_time.py index fb78194d1a4..700d1004718 100644 --- a/release/scripts/startup/bl_ui/space_time.py +++ b/release/scripts/startup/bl_ui/space_time.py @@ -228,6 +228,11 @@ def marker_menu_generic(layout): layout.operator("marker.rename", text="Rename Marker") layout.operator("marker.move", text="Grab/Move Marker") + + layout.separator() + + layout.operator("screen.marker_jump", text="Jump to Next Marker").next = True + layout.operator("screen.marker_jump", text="Jump to Previous Marker").next = False if __name__ == "__main__": # only for live edit. -- cgit v1.2.3