Fixed copy paste error in gimp_vector3_copy

This commit is contained in:
qarmin 2020-04-30 15:19:39 +02:00 committed by Rafał
parent 43b538bf1b
commit fc0d2d9ce7
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}