Snapping: transform snap in editmode couldn't snap to data in the same mesh.
This commit is contained in:
Martin Poirier 2009-10-01 18:00:00 +00:00
parent 606e609f5d
commit 57cf7d2d4a

@ -539,7 +539,6 @@ void CalcSnapGeometry(TransInfo *t, float *vec)
float no[3];
int found = 0;
int dist = SNAP_MIN_DISTANCE; // Use a user defined value here
SnapMode mode;
if (t->settings->snap_mode == SCE_SNAP_MODE_VOLUME)
{
@ -634,16 +633,7 @@ void CalcSnapGeometry(TransInfo *t, float *vec)
}
else
{
if (t->obedit == NULL)
{
mode = SNAP_NOT_SELECTED;
}
else
{
mode = SNAP_NOT_OBEDIT;
}
found = snapObjectsTransform(t, t->mval, &dist, loc, no, mode);
found = snapObjectsTransform(t, t->mval, &dist, loc, no, t->tsnap.mode);
}
if (found == 1)