mirror of https://github.com/GNOME/gimp.git
Reverted the patch I applied to fix the SOTA-Chrome bug. Yosh says he
will add a new GUINT8ARRAY type to the PDB to fix this the right way.
This commit is contained in:
parent
48e8fa0141
commit
ca29a71c71
|
@ -539,7 +539,7 @@ curves_spline_invoker (Argument *args)
|
|||
GimpDrawable *drawable;
|
||||
gint32 channel;
|
||||
gint32 num_points;
|
||||
guint8 *control_pts;
|
||||
gint8 *control_pts;
|
||||
CurvesDialog cd;
|
||||
int x1, y1, x2, y2;
|
||||
int i, j;
|
||||
|
@ -557,7 +557,7 @@ curves_spline_invoker (Argument *args)
|
|||
if (num_points <= 3 || num_points > 32)
|
||||
success = FALSE;
|
||||
|
||||
control_pts = (guint8 *) args[3].value.pdb_pointer;
|
||||
control_pts = (gint8 *) args[3].value.pdb_pointer;
|
||||
|
||||
if (success)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue