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>2018-06-28 09:27:03 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-06-28 09:27:03 +0300
commitd8d245917da69741e19bb486fe2112b9c5c1a55a (patch)
tree78a18651762dabd9586f55d25ed9ff57b9652680 /release/scripts/startup/bl_ui/space_sequencer.py
parenta18a6a1441e4c08b3a40637f6d1e9264183a5795 (diff)
Cleanup: pep8
Diffstat (limited to 'release/scripts/startup/bl_ui/space_sequencer.py')
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py21
1 files changed, 10 insertions, 11 deletions
diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index 08ae7a99739..f350e854dd1 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -83,9 +83,9 @@ class SEQUENCER_HT_header(Header):
SEQUENCER_MT_editor_menus.draw_collapsible(context, layout)
- layout.separator_spacer()
-
- layout.template_running_jobs()
+ layout.separator_spacer()
+
+ layout.template_running_jobs()
if st.view_type in {'PREVIEW', 'SEQUENCER_PREVIEW'}:
layout.prop(st, "display_mode", expand=True, text="")
@@ -93,8 +93,8 @@ class SEQUENCER_HT_header(Header):
if st.view_type == 'SEQUENCER':
layout.separator()
layout.prop(st, "show_backdrop")
- layout.operator("sequencer.refresh_all")
-
+ layout.operator("sequencer.refresh_all")
+
else:
if st.view_type == 'SEQUENCER_PREVIEW':
layout.separator()
@@ -131,12 +131,11 @@ class SEQUENCER_HT_header(Header):
props.animation = True
props.sequencer = True
- if st.view_type == 'SEQUENCER':
-
- row = layout.row(align=True)
- row.operator("sequencer.copy", text="", icon='COPYDOWN')
- row.operator("sequencer.paste", text="", icon='PASTEDOWN')
-
+ if st.view_type == 'SEQUENCER':
+
+ row = layout.row(align=True)
+ row.operator("sequencer.copy", text="", icon='COPYDOWN')
+ row.operator("sequencer.paste", text="", icon='PASTEDOWN')
class SEQUENCER_MT_editor_menus(Menu):