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-13 13:28:01 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-07-13 13:28:01 +0400
commit291c99c5d9fd25e69a17a150ee86d3261987cf34 (patch)
treee2749395b6ea4875c315fb6cf90b0ce8dd6c71e8 /release
parentef76dfd591f2643a86bf0f92f282f95724ca2fa7 (diff)
- saturation option for sequencer strips, runs before multiply and color balance.
- multiply of 0.0 wasnt being applied.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/space_sequencer.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/ui/space_sequencer.py b/release/scripts/ui/space_sequencer.py
index 11f542ce5be..a41b5fe5262 100644
--- a/release/scripts/ui/space_sequencer.py
+++ b/release/scripts/ui/space_sequencer.py
@@ -745,6 +745,7 @@ class SEQUENCER_PT_filter(SequencerButtonsPanel):
col = layout.column()
col.label(text="Colors:")
+ col.prop(strip, "color_saturation", text="Saturation")
col.prop(strip, "multiply_colors", text="Multiply")
col.prop(strip, "premultiply")
col.prop(strip, "convert_float")