fix [#27198] Missing Live LSCM Update after Aligning of pinned vertices (W)

UV Sync Select was failing with live unwrap.
This commit is contained in:
Campbell Barton
2011-04-29 03:01:58 +00:00
parent e45328f1b6
commit 70829f05da

View File

@@ -170,8 +170,16 @@ static ParamHandle *construct_param_handle(Scene *scene, EditMesh *em, short imp
float *uv[4];
int nverts;
if((efa->h) || (sel && (efa->f & SELECT)==0))
continue;
if(scene->toolsettings->uv_flag & UV_SYNC_SELECTION) {
if(efa->h) {
continue;
}
}
else {
if((efa->h) || (sel && (efa->f & SELECT)==0)) {
continue;
}
}
tf= (MTFace *)CustomData_em_get(&em->fdata, efa->data, CD_MTFACE);