libgimpcolor: fix call to cmsCreateProofingTransform().

Wrong argument order! See Little-CMS API.
This commit is contained in:
Jehan 2022-04-20 20:48:20 +02:00
parent f19f940916
commit 1a840b8e18
1 changed files with 1 additions and 1 deletions

View File

@ -357,8 +357,8 @@ gimp_color_transform_new_proofing (GimpColorProfile *src_profile,
priv->transform = cmsCreateProofingTransform (src_lcms, lcms_src_format,
dest_lcms, lcms_dest_format,
proof_lcms,
proof_intent,
display_intent,
proof_intent,
flags |
cmsFLAGS_SOFTPROOFING |
cmsFLAGS_COPY_ALPHA);