From 456dc16e4a191c4cf101e62a22bf91046ed07e06 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 24 Jan 2014 14:29:50 +0600 Subject: [PATCH] Fix currently harmless issue with converting ImBuf from sequencer space --- source/blender/blenkernel/intern/sequencer.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/blenkernel/intern/sequencer.c b/source/blender/blenkernel/intern/sequencer.c index d02cdae5a7b..4c32e3e7654 100644 --- a/source/blender/blenkernel/intern/sequencer.c +++ b/source/blender/blenkernel/intern/sequencer.c @@ -480,6 +480,7 @@ void BKE_sequencer_imbuf_from_sequencer_space(Scene *scene, ImBuf *ibuf) if (to_colorspace && to_colorspace[0] != '\0') { IMB_colormanagement_transform_threaded(ibuf->rect_float, ibuf->x, ibuf->y, ibuf->channels, from_colorspace, to_colorspace, true); + IMB_colormanagement_assign_float_colorspace(ibuf, to_colorspace); } }