Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-12-16 10:02:40 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-12-16 10:02:40 +0300
commite671c548e66e95d4fd1884c81c2dab1ae4a1a219 (patch)
treeb40a9188f9a2b98998c384d1453d1c45d450f4f7 /release/scripts/startup/bl_ui/space_sequencer.py
parentf34ca933a806b83be957f69835c7a6033fe5ca2c (diff)
Cleanup: pep8
Diffstat (limited to 'release/scripts/startup/bl_ui/space_sequencer.py')
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py6
1 files changed, 1 insertions, 5 deletions
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"