Fix #109633: 'Project Individual Elements' for 'Vert/Edge Slide' #109656

Merged
Germano Cavalcante merged 1 commits from mano-wii/blender:fix_109633_v3.6 into blender-v3.6-release 2023-07-12 22:11:00 +02:00
2 changed files with 2 additions and 2 deletions

View File

@ -1542,7 +1542,7 @@ void initEdgeSlide_ex(
t->num.unit_sys = t->scene->unit.system;
t->num.unit_type[0] = B_UNIT_NONE;
t->flag |= T_NO_CONSTRAINT | T_NO_PROJECT;
t->flag |= T_NO_CONSTRAINT;
}
void initEdgeSlide(TransInfo *t)

View File

@ -664,7 +664,7 @@ void initVertSlide_ex(TransInfo *t, bool use_even, bool flipped, bool use_clamp)
t->num.unit_sys = t->scene->unit.system;
t->num.unit_type[0] = B_UNIT_NONE;
t->flag |= T_NO_CONSTRAINT | T_NO_PROJECT;
t->flag |= T_NO_CONSTRAINT;
}
void initVertSlide(TransInfo *t)