mirror of https://github.com/GNOME/gimp.git
app: fix mapping for CURVE_BLUE (use the blue, not the green curve)
This commit is contained in:
parent
780ebd7c24
commit
105b7c5afa
|
@ -154,7 +154,7 @@ gimp_curve_map_pixels (GimpCurve *curve_colors,
|
|||
{
|
||||
dest[0] = src[0];
|
||||
dest[1] = src[1];
|
||||
dest[2] = gimp_curve_map_value (curve_green, src[2]);
|
||||
dest[2] = gimp_curve_map_value (curve_blue, src[2]);
|
||||
dest[3] = src[3];
|
||||
|
||||
src += 4;
|
||||
|
|
Loading…
Reference in New Issue