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-12-20 05:01:40 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-12-20 05:11:04 +0300
commite71d489254c9d9639902e3ae8d2393a902eb11c8 (patch)
tree38f62429ed1331123658fdcf1e0fdfc64f1aec5f /release/scripts/startup/bl_ui/space_sequencer.py
parent592165665543607bf43fdb13c4d2d7e51b37e8c6 (diff)
Cleanup: style
Diffstat (limited to 'release/scripts/startup/bl_ui/space_sequencer.py')
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index a018a64e91c..b6c42d9208d 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -99,7 +99,7 @@ class SEQUENCER_HT_header(Header):
if st.view_type in {'SEQUENCER', 'SEQUENCER_PREVIEW'}:
layout.separator()
- layout.operator("sequencer.refresh_all", icon="FILE_REFRESH", text="")
+ layout.operator("sequencer.refresh_all", icon='FILE_REFRESH', text="")
if st.view_type in {'PREVIEW', 'SEQUENCER_PREVIEW'}:
layout.prop(st, "display_mode", text="", icon_only=True)
@@ -408,7 +408,7 @@ class SEQUENCER_MT_add_effect(Menu):
col.operator("sequencer.effect_strip_add", text="Alpha Over").type = 'ALPHA_OVER'
col.operator("sequencer.effect_strip_add", text="Alpha Under").type = 'ALPHA_UNDER'
col.operator("sequencer.effect_strip_add", text="Color Mix").type = 'COLORMIX'
- col.enabled = sel_sequences(context) >=2
+ col.enabled = sel_sequences(context) >= 2
layout.separator()