Fix #28262: uv unwrap in sync selection mode unwrapped all faces irrespective

of selection. Changed the fix for bug #27198, live unwrap not working with
sync selection.
This commit is contained in:
2011-08-17 14:43:11 +00:00
parent 8536209260
commit feb7afe671

View File

@@ -205,11 +205,7 @@ static ParamHandle *construct_param_handle(Scene *scene, EditMesh *em, short imp
float *uv[4];
int nverts;
if(scene->toolsettings->uv_flag & UV_SYNC_SELECTION) {
if(efa->h)
continue;
}
else if((efa->h) || (sel && (efa->f & SELECT)==0))
if((efa->h) || (sel && (efa->f & SELECT)==0))
continue;
tf= (MTFace *)CustomData_em_get(&em->fdata, efa->data, CD_MTFACE);
@@ -586,7 +582,7 @@ void ED_uvedit_live_unwrap_begin(Scene *scene, Object *obedit)
return;
}
liveHandle = construct_param_handle(scene, em, 0, fillholes, 1, 1);
liveHandle = construct_param_handle(scene, em, 0, fillholes, 0, 1);
param_lscm_begin(liveHandle, PARAM_TRUE, abf);
BKE_mesh_end_editmesh(obedit->data, em);