Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_sequencer.py
| Show First 20 Lines • Show All 285 Lines • ▼ Show 20 Lines | class SEQUENCER_PT_preview_overlay(Panel): | ||||
| def draw(self, context): | def draw(self, context): | ||||
| ed = context.scene.sequence_editor | ed = context.scene.sequence_editor | ||||
| st = context.space_data | st = context.space_data | ||||
| overlay_settings = st.preview_overlay | overlay_settings = st.preview_overlay | ||||
| layout = self.layout | layout = self.layout | ||||
| layout.active = st.show_overlays | layout.active = st.show_overlays | ||||
| layout.prop(overlay_settings, "show_image_outline") | layout.prop(overlay_settings, "show_image_outline") | ||||
| layout.prop(overlay_settings, "show_2d_cursor") | |||||
| layout.prop(ed, "show_overlay_frame", text="Frame Overlay") | layout.prop(ed, "show_overlay_frame", text="Frame Overlay") | ||||
| layout.prop(overlay_settings, "show_safe_areas", text="Safe Areas") | layout.prop(overlay_settings, "show_safe_areas", text="Safe Areas") | ||||
| layout.prop(overlay_settings, "show_metadata", text="Metadata") | layout.prop(overlay_settings, "show_metadata", text="Metadata") | ||||
| layout.prop(overlay_settings, "show_annotation", text="Annotations") | layout.prop(overlay_settings, "show_annotation", text="Annotations") | ||||
| class SEQUENCER_PT_sequencer_overlay(Panel): | class SEQUENCER_PT_sequencer_overlay(Panel): | ||||
| bl_space_type = 'SEQUENCE_EDITOR' | bl_space_type = 'SEQUENCE_EDITOR' | ||||
| ▲ Show 20 Lines • Show All 2,284 Lines • Show Last 20 Lines | |||||