From e671c548e66e95d4fd1884c81c2dab1ae4a1a219 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 16 Dec 2020 18:02:40 +1100 Subject: Cleanup: pep8 --- release/scripts/startup/bl_ui/space_sequencer.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'release/scripts/startup/bl_ui/space_sequencer.py') diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py index 8ef961960ff..84602057e18 100644 --- a/release/scripts/startup/bl_ui/space_sequencer.py +++ b/release/scripts/startup/bl_ui/space_sequencer.py @@ -156,7 +156,6 @@ class SEQUENCER_HT_header(Header): if tool_settings.use_proportional_edit: row.prop(tool_settings, "proportional_edit_falloff", icon_only=True) - row = layout.row(align=True) row.prop(st, "show_strip_overlay", text="", icon='OVERLAY') sub = row.row(align=True) @@ -213,7 +212,6 @@ class SEQUENCER_PT_preview_overlay(Panel): st = context.space_data return st.view_type in {'PREVIEW', 'SEQUENCER_PREVIEW'} and st.display_mode == 'IMAGE' - def draw(self, context): ed = context.scene.sequence_editor st = context.space_data @@ -224,7 +222,7 @@ class SEQUENCER_PT_preview_overlay(Panel): layout.prop(st, "show_safe_areas", text="Safe Areas") layout.prop(st, "show_metadata", text="Metadata") layout.prop(st, "show_annotation", text="Annotations") - + class SEQUENCER_PT_sequencer_overlay(Panel): bl_space_type = 'SEQUENCE_EDITOR' @@ -237,7 +235,6 @@ class SEQUENCER_PT_sequencer_overlay(Panel): st = context.space_data return st.view_type in {'SEQUENCER', 'SEQUENCER_PREVIEW'} - def draw(self, context): st = context.space_data layout = self.layout @@ -258,7 +255,6 @@ class SEQUENCER_PT_sequencer_overlay(Panel): layout.prop_menu_enum(st, "waveform_display_type") - class SEQUENCER_MT_view_cache(Menu): bl_label = "Cache" -- cgit v1.2.3