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:
authorPeter Schlaile <peter@schlaile.de>2009-06-17 01:16:22 +0400
committerPeter Schlaile <peter@schlaile.de>2009-06-17 01:16:22 +0400
commit74d3d136dbd98f59fb7ba2f9b908330caf15e411 (patch)
tree36a46c93717736f1e5a1b2b72a5528eed87203b3 /source/blender/blenloader
parent2faf20c4b3ae1ca6c82dd2a942d2f2a580685436 (diff)
== Sequencer ==
Fixed color balance tool. Problem was: we pretended to do Lift/Gamma/Gain, but in reality we did (1-Offset)/Power/Slope. (slightly modified ASC CDL). So now, the GUI is able to switch modes between ASC CDL-mode and real Lift/Gamma/Gain. It also adds a switch to enable Neutral Black/White flipping (very usefull for black point selection) This closes: [#18078] bugfix #18010 Sequencer lift
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/readfile.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index b4efa5d1432..4e5789d87e8 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -3703,6 +3703,9 @@ static void direct_link_scene(FileData *fd, Scene *sce)
} else {
seq->strip->color_balance = 0;
}
+ if (seq->strip->color_balance) {
+ seq->strip->color_balance->gui = 0;
+ }
}
}
END_SEQ