Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_sequencer.py
| Show First 20 Lines • Show All 379 Lines • ▼ Show 20 Lines | |||||
| class SEQUENCER_MT_select_playhead(Menu): | class SEQUENCER_MT_select_playhead(Menu): | ||||
| bl_label = "Select Playhead" | bl_label = "Select Playhead" | ||||
| def draw(self, _context): | def draw(self, _context): | ||||
| layout = self.layout | layout = self.layout | ||||
| props = layout.operator("sequencer.select", text="Under") | |||||
| props.left_right = 'UNDER' | |||||
| props.linked_time = True | |||||
| props = layout.operator("sequencer.select", text="Left") | props = layout.operator("sequencer.select", text="Left") | ||||
| props.left_right = 'LEFT' | props.left_right = 'LEFT' | ||||
| props.linked_time = True | props.linked_time = True | ||||
| props = layout.operator("sequencer.select", text="Right") | props = layout.operator("sequencer.select", text="Right") | ||||
| props.left_right = 'RIGHT' | props.left_right = 'RIGHT' | ||||
| props.linked_time = True | props.linked_time = True | ||||
| ▲ Show 20 Lines • Show All 1,884 Lines • Show Last 20 Lines | |||||