Force proportional editing flag off in object mode.

While it didn't have any effect on objects themselves, it could display the falloff mode (Smooth) in the header. The bug was purely cosmetic.
This commit is contained in:
Martin Poirier 2008-05-26 12:52:28 +00:00
parent 3b4873250e
commit ae2a0bb273

@ -4054,6 +4054,7 @@ void createTransData(TransInfo *t)
t->flag |= T_POINTS; t->flag |= T_POINTS;
} }
else { else {
t->flag &= ~T_PROP_EDIT; /* no proportional edit in object mode */
createTransObject(t); createTransObject(t);
t->flag |= T_OBJECT; t->flag |= T_OBJECT;
} }