From 02dd3a9d0eac3d760dd09cf3690d0c1b92155cf1 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sat, 13 Oct 2012 23:43:12 +0200 Subject: [PATCH] Fix an issue where we could try to incorrectly gamma correct the colorspace conversion inserted at the end, due to a missing propagate call. --- effect_chain.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/effect_chain.cpp b/effect_chain.cpp index 9ea2c03..3bc04a3 100644 --- a/effect_chain.cpp +++ b/effect_chain.cpp @@ -764,6 +764,7 @@ void EffectChain::fix_output_color_space() conversion->effect->set_int("destination_space", output_format.color_space); conversion->output_color_space = output_format.color_space; connect_nodes(output, conversion); + propagate_gamma_and_color_space(); } } -- 2.39.2