Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_sequencer.py
| Context not available. | |||||
| def draw(self, _context): | def draw(self, _context): | ||||
| layout = self.layout | layout = self.layout | ||||
| layout.operator("sequencer.lock", icon='LOCKED') | layout.operator("sequencer.lock") | ||||
ISS: Do you want to remove this icon?
Why? | |||||
ISSUnsubmitted Done Inline ActionsSorry, turns out, I can not read and comprehend at once - it is written in the description. ISS: Sorry, turns out, I can not read and comprehend at once - it is written in the description.
You… | |||||
| layout.operator("sequencer.unlock") | layout.operator("sequencer.unlock") | ||||
| layout.separator() | layout.separator() | ||||
| Context not available. | |||||
| layout.operator("sequencer.rendersize") | layout.operator("sequencer.rendersize") | ||||
| layout.operator("sequencer.images_separate") | layout.operator("sequencer.images_separate") | ||||
| layout.operator("sequencer.deinterlace_selected_movies") | layout.operator("sequencer.deinterlace_selected_movies") | ||||
ISSUnsubmitted Not Done Inline ActionsThis line shouldn't be here. ISS: This line shouldn't be here.
It is here because there are some characters at the end of the… | |||||
| class SEQUENCER_MT_strip(Menu): | class SEQUENCER_MT_strip(Menu): | ||||
| Context not available. | |||||
| layout.operator("sequencer.duplicate_move") | layout.operator("sequencer.duplicate_move") | ||||
| layout.operator("sequencer.delete", text="Delete...") | layout.operator("sequencer.delete", text="Delete...") | ||||
| layout.separator() | |||||
| layout.menu("SEQUENCER_MT_strip_lock_mute") | |||||
| strip = act_strip(context) | strip = act_strip(context) | ||||
| if strip: | if strip: | ||||
| Context not available. | |||||
| if stype != 'META': | if stype != 'META': | ||||
| layout.separator() | layout.separator() | ||||
| layout.operator("sequencer.meta_make") | layout.operator("sequencer.meta_make") | ||||
| layout.operator("sequencer.meta_toggle", text="Toggle Meta") | |||||
| layout.separator() | layout.separator() | ||||
| layout.menu("SEQUENCER_MT_strip_input") | layout.menu("SEQUENCER_MT_strip_lock_mute") | ||||
| layout.separator() | |||||
| layout.menu("SEQUENCER_MT_strip_input") | |||||
| layout.separator() | layout.separator() | ||||
| layout.operator("sequencer.rebuild_proxy") | layout.operator("sequencer.rebuild_proxy") | ||||
ISSUnsubmitted Not Done Inline ActionsAlso whitespace here ISS: Also whitespace here | |||||
| class SEQUENCER_MT_context_menu(Menu): | class SEQUENCER_MT_context_menu(Menu): | ||||
| bl_label = "Sequencer Context Menu" | bl_label = "Sequencer Context Menu" | ||||
| Context not available. | |||||
Do you want to remove this icon?
Why?