Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2013-10-21 19:00:22 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2013-10-21 19:00:22 +0400
commitefe2b1edf1df06ea25e0d7b7ae1ce9ecab49783c (patch)
tree985e27097edee50d9695877039dc58f0a5757d05 /release
parent5d132e722efeaed52536b411fb6cf86083b7d6e4 (diff)
Jump to Next/Previous Marker operators in the timeline menu, shortcuts are
ctrl + shift + left/right arrow key. Patch #37142 by Henrik Aarnio, thanks!
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_time.py5
1 files changed, 5 insertions, 0 deletions
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.