[#28801] Pet doesn't work on the whole mesh

Reported by Enrico Valenza

Mirror messes up the zone of influence. Disable mirror internally when proportional edit is on.
This commit is contained in:
2011-10-04 23:42:06 +00:00
parent ca906b207d
commit 3bdadb6975

View File

@@ -1187,6 +1187,12 @@ int initTransInfo (bContext *C, TransInfo *t, wmOperator *op, wmEvent *event)
t->options |= CTX_NO_PET;
}
// Mirror is not supported with PET, turn it off.
if (t->flag & T_PROP_EDIT)
{
t->flag &= ~T_MIRROR;
}
setTransformViewMatrices(t);
initNumInput(&t->num);