[Bf-blender-cvs] [ef08e77a464] blender2.8: Markers: Move "Bind Camera to Marker" from 'View' Menu to the Markers menu proper

Joshua Leung noreply at git.blender.org
Tue Apr 24 19:18:40 CEST 2018


Commit: ef08e77a464e591efaa532e04b4610d129bee874
Author: Joshua Leung
Date:   Tue Apr 24 17:59:32 2018 +0200
Branches: blender2.8
https://developer.blender.org/rBef08e77a464e591efaa532e04b4610d129bee874

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.

===================================================================

M	release/scripts/startup/bl_ui/space_time.py

===================================================================

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



More information about the Bf-blender-cvs mailing list