Added a NO_NOR_RECALC context flag. With Individual extrude, the normals are already set by the extrude code, recalculating breaks them.

Cosmetic changes, renamed CTX_NOPET to CTX_NO_PET

CKey during transform now clears the constraint.
This commit is contained in:
2005-04-04 02:16:56 +00:00
parent 7b0a661413
commit fad97122aa
8 changed files with 21 additions and 15 deletions

View File

@@ -388,7 +388,7 @@ void initTrans (TransInfo *t)
t->flag = 0;
/* setting PET flag */
if ((t->context & CTX_NOPET) == 0 && (G.f & G_PROPORTIONAL)) {
if ((t->context & CTX_NO_PET) == 0 && (G.f & G_PROPORTIONAL)) {
t->flag |= T_PROP_EDIT;
}