Fix another error in rB5e12e62a6a4e

The code was ignoring the icremental with small distances.
This commit is contained in:
Germano Cavalcante 2021-10-14 13:31:17 -03:00
parent 328b6f672b
commit 497d0400bd
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ short getAnimEdit_SnapMode(TransInfo *t)
}
else if (t->spacetype == SPACE_GRAPH) {
if ((t->mode == TFM_TRANSLATION) && activeSnap(t)) {
/* Use the translate mode snap. */
return autosnap;
}
else {
SpaceGraph *sipo = (SpaceGraph *)t->area->spacedata.first;