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>2010-07-04 05:56:04 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-07-04 05:56:04 +0400
commitc7869f9f85989e35c2c030a78c04a4569e4946ff (patch)
tree2ef68830f2c2ab1bc542ad526a5d041de7a0a31d /release
parent281902d6eed8be1f2de0a9c3877303672aa8644a (diff)
- draw sequence strips within metastrips using their real start/end and channel positions.
- dont show color balance unless its enabled.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/space_sequencer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/ui/space_sequencer.py b/release/scripts/ui/space_sequencer.py
index d29f4381dc4..ed39a98e86a 100644
--- a/release/scripts/ui/space_sequencer.py
+++ b/release/scripts/ui/space_sequencer.py
@@ -745,7 +745,7 @@ class SEQUENCER_PT_filter(SequencerButtonsPanel):
col.prop(strip, "convert_float")
layout.prop(strip, "use_color_balance")
- if strip.color_balance: # TODO - need to add this somehow
+ if strip.use_color_balance and strip.color_balance: # TODO - need to add this somehow
row = layout.row()
row.active = strip.use_color_balance
col = row.column()