Fix wrong length value in the header of the Move operator

Missed in {rB0d36439f95c0}.
This commit is contained in:
Germano Cavalcante 2021-08-25 13:01:19 -03:00
parent 8fb9155598
commit 05564c8ca6
1 changed files with 3 additions and 0 deletions

View File

@ -243,6 +243,9 @@ static void headerTranslation(TransInfo *t, const float vec[3], char str[UI_MAX_
if (t->con.mode & CON_AXIS2) {
dvec[i++] = dvec[2];
}
while (i != 3) {
dvec[i++] = 0.0f;
}
}
if (t->flag & T_2D_EDIT) {