plug-ins: fix incorrect CMYK transform for the variant without alpha

Probably due to a copy-paste error the case without alpha was also using
the img->cmyk_transform_alpha instead of img->cmyk_transform.
This commit is contained in:
Jacob Boerema
2021-10-26 17:56:29 -04:00
parent 080d680b7d
commit 5115021eac

View File

@ -1412,7 +1412,7 @@ psd_convert_cmyk_to_srgb (PSDimage *img_a,
g_object_unref (srgb);
}
gimp_color_transform_process_pixels (img_a->cmyk_transform_alpha,
gimp_color_transform_process_pixels (img_a->cmyk_transform,
babl_format ("cmyk u8"),
src,
babl_format ("R'G'B' float"),