Skip to content

Commit

Permalink
Clip Editor - remove double menu entries Track Forward to Backward
Browse files Browse the repository at this point in the history
  • Loading branch information
ReinerBforartists committed Dec 5, 2017
1 parent 721937e commit 87cabd0
Showing 1 changed file with 1 addition and 21 deletions.
22 changes: 1 addition & 21 deletions release/scripts/startup/bl_ui/space_clip.py
@@ -1,4 +1,4 @@
# ##### BEGIN GPL LICENSE BLOCK #####
# ##### BEGIN GPL LICENSE BLOCK #####
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down Expand Up @@ -1333,26 +1333,6 @@ def draw(self, context):
layout.operator("clip.keyframe_insert")
layout.operator("clip.keyframe_delete")

layout.separator()
props = layout.operator("clip.track_markers", text="Track Frame Backwards")
props.backwards = True
props.sequence = False

props = layout.operator("clip.track_markers", text="Track Backwards")
props.backwards = True
props.sequence = True

props = layout.operator("clip.track_markers", text="Track Forwards")
props.backwards = False
props.sequence = True

props = layout.operator("clip.track_markers", text="Track Frame Forwards")
props.backwards = False
props.sequence = False

#layout.separator()
#layout.operator("clip.add_marker_move")

layout.separator()
layout.menu("CLIP_MT_track_visibility")
layout.menu("CLIP_MT_track_transform")
Expand Down

0 comments on commit 87cabd0

Please sign in to comment.