=== Mirror Tool ===

Fix call order mix up.

That's what I get for doing "cleanup" before a commit.

Tested as working ok with this.
This commit is contained in:
Martin Poirier
2008-01-25 04:38:08 +00:00
parent 7d157e2cd0
commit ee19d9a24e

View File

@@ -4055,7 +4055,6 @@ void initMirror(TransInfo *t)
}
t->transform = Mirror;
t->fac = 0.1f;
}
int Mirror(TransInfo *t, short mval[2])
@@ -4073,16 +4072,16 @@ int Mirror(TransInfo *t, short mval[2])
/* if an axis has been selected */
if (t->con.mode & CON_APPLY) {
size[0] = size[1] = size[2] = -1;
SizeToMat3(size, mat);
if (t->con.applySize) {
t->con.applySize(t, NULL, mat);
}
sprintf(str, "Mirror%s", t->con.text);
size[0] = size[1] = size[2] = -1;
SizeToMat3(size, mat);
for(i = 0, td=t->data; i < t->total; i++, td++) {
if (td->flag & TD_NOACTION)
break;