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>2019-06-23 04:33:50 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-06-23 04:38:26 +0300
commit589fa691fd8750c3d100cf8add67a6b6e467b68c (patch)
tree6f4ac4cd735460d647a29f9c16d7dbda88c1ae7b /release/scripts/startup/bl_ui/space_sequencer.py
parent90d262abe17f06e25d927245b566b086c5440098 (diff)
Cleanup: pep8
Diffstat (limited to 'release/scripts/startup/bl_ui/space_sequencer.py')
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py24
1 files changed, 12 insertions, 12 deletions
diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index 809cb3e9b60..bfbf2f949f7 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -821,31 +821,31 @@ class SEQUENCER_PT_strip(SequencerButtonsPanel, Panel):
'OVER_DROP', 'GLOW', 'TRANSFORM', 'SPEED', 'MULTICAM',
'GAUSSIAN_BLUR', 'COLORMIX',
}:
- icon_header='SHADERFX'
+ icon_header = 'SHADERFX'
elif strip_type in {
'CROSS', 'GAMMA_CROSS', 'WIPE',
}:
- icon_header='ARROW_LEFTRIGHT'
+ icon_header = 'ARROW_LEFTRIGHT'
elif strip_type == 'SCENE':
- icon_header='SCENE_DATA'
+ icon_header = 'SCENE_DATA'
elif strip_type == 'MOVIECLIP':
- icon_header='TRACKER'
+ icon_header = 'TRACKER'
elif strip_type == 'MASK':
- icon_header='MOD_MASK'
+ icon_header = 'MOD_MASK'
elif strip_type == 'MOVIE':
- icon_header='FILE_MOVIE'
+ icon_header = 'FILE_MOVIE'
elif strip_type == 'SOUND':
- icon_header='FILE_SOUND'
+ icon_header = 'FILE_SOUND'
elif strip_type == 'IMAGE':
- icon_header='FILE_IMAGE'
+ icon_header = 'FILE_IMAGE'
elif strip_type == 'COLOR':
- icon_header='COLOR'
+ icon_header = 'COLOR'
elif strip_type == 'TEXT':
- icon_header='FONT_DATA'
+ icon_header = 'FONT_DATA'
elif strip_type == 'ADJUSTMENT':
- icon_header='COLOR'
+ icon_header = 'COLOR'
else:
- icon_header='SEQ_SEQUENCER'
+ icon_header = 'SEQ_SEQUENCER'
row = layout.row()
row.label(text="", icon=icon_header)