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:
authorJoshua Leung <aligorith@gmail.com>2018-04-24 18:59:32 +0300
committerJoshua Leung <aligorith@gmail.com>2018-04-24 20:18:31 +0300
commitef08e77a464e591efaa532e04b4610d129bee874 (patch)
treea257cc680105afb7baaffa4ce969bbb43e78352c /release/scripts/startup/bl_ui/space_time.py
parent58650a7599da9b4d56045ac599173fc92d3e5c68 (diff)
Markers: Move "Bind Camera to Marker" from 'View' Menu to the Markers menu proper
It was always weird that this tool for markers was stored in a different menu where it was hard to find.
Diffstat (limited to 'release/scripts/startup/bl_ui/space_time.py')
-rw-r--r--release/scripts/startup/bl_ui/space_time.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/space_time.py b/release/scripts/startup/bl_ui/space_time.py
index 95844eeb667..ef4f7df76fa 100644
--- a/release/scripts/startup/bl_ui/space_time.py
+++ b/release/scripts/startup/bl_ui/space_time.py
@@ -152,10 +152,6 @@ class TIME_MT_view(Menu):
layout.separator()
- layout.operator("marker.camera_bind")
-
- layout.separator()
-
layout.operator("screen.area_dupli")
layout.operator("screen.screen_full_area")
layout.operator("screen.screen_full_area", text="Toggle Fullscreen Area").use_hide_panels = True
@@ -263,6 +259,10 @@ def marker_menu_generic(layout):
layout.separator()
+ layout.operator("marker.camera_bind")
+
+ 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