From 5d2dd0a3fe8922fc7b4e46e2d0fb151f4a4f962a Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Tue, 3 Sep 2013 09:18:04 +0000 Subject: [PATCH] Color managed color didn't work properly for float sequencer frames. Like, it seems it never worked actually. --- source/blender/editors/space_sequencer/sequencer_view.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/blender/editors/space_sequencer/sequencer_view.c b/source/blender/editors/space_sequencer/sequencer_view.c index 68428cd890f..18733d4e409 100644 --- a/source/blender/editors/space_sequencer/sequencer_view.c +++ b/source/blender/editors/space_sequencer/sequencer_view.c @@ -152,7 +152,8 @@ static void sample_apply(bContext *C, wmOperator *op, const wmEvent *event) info->colfp = info->colf; /* sequencer's image buffers are in non-linear space, need to make them linear */ - BKE_sequencer_pixel_from_sequencer_space_v4(scene, info->colf); + copy_v4_v4(info->linearcol, info->colf); + BKE_sequencer_pixel_from_sequencer_space_v4(scene, info->linearcol); info->color_manage = TRUE; }