Author: Michael Hölzen Date: To: Sven Neumann CC: gimp-developer Subject: Re: [Gimp-developer] call plug-in-curve-bend
Sven Neumann schrieb: > Hi,
> Looks like a simple bug in the curve-bend plug-in. Below is a patch that
> should fix it. I will apply this to both branches...
>
> Index: plug-ins/common/curve-bend.c
> ===================================================================
> --- plug-ins/common/curve-bend.c (revision 25501)
> +++ plug-ins/common/curve-bend.c (working copy)
> @@ -745,7 +745,7 @@ run (const gchar *name,
> p_copy_yval (cd, OUTLINE_UPPER,
> param[16].data.d_int32,
> param[17].data.d_int8array);
> - p_copy_yval (cd, OUTLINE_UPPER,
> + p_copy_yval (cd, OUTLINE_LOWER,
> param[18].data.d_int32,
> param[19].data.d_int8array);
> }
>
>
>
> Sven
> Thanks a lot for that fast solution!