Sequencer: use all selected strips for select side operator

D6127 by @a.monti with edits.
This commit is contained in:
Campbell Barton
2019-11-01 08:39:03 +11:00
parent e1c9c0106c
commit ddf20fae4c
4 changed files with 77 additions and 19 deletions

View File

@@ -316,8 +316,10 @@ class SEQUENCER_MT_select_channel(Menu):
def draw(self, _context):
layout = self.layout
layout.operator("sequencer.select_active_side", text="Left").side = 'LEFT'
layout.operator("sequencer.select_active_side", text="Right").side = 'RIGHT'
layout.operator("sequencer.select_side", text="Left").side = 'LEFT'
layout.operator("sequencer.select_side", text="Right").side = 'RIGHT'
layout.separator()
layout.operator("sequencer.select_side", text="Both Sides").side = 'BOTH'
class SEQUENCER_MT_select_linked(Menu):