Fixed copy paste error in gimp_vector3_copy
This commit is contained in:
parent
43b538bf1b
commit
fc0d2d9ce7
1 changed files with 1 additions and 1 deletions
|
|
@ -1168,7 +1168,7 @@ gimp_vector3_copy (gpointer boxed)
|
|||
new_v = g_slice_new (GimpVector3);
|
||||
new_v->x = vector->x;
|
||||
new_v->y = vector->y;
|
||||
new_v->y = vector->z;
|
||||
new_v->z = vector->z;
|
||||
|
||||
return new_v;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue