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.
This commit is contained in:
Joshua Leung 2018-04-24 17:59:32 +02:00
parent 58650a7599
commit ef08e77a46
1 changed files with 4 additions and 4 deletions

View File

@ -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