* minor changes, edited some tooltips (exr half and zbuf were not that helpful)

* UV coord buttons overlapped others since merging uv/face and editmode.
* added some quad join and triangulate into the Ctrl+F face menu.
* active face cant be hidden anymore.
This commit is contained in:
2007-09-14 06:46:57 +00:00
parent 670611e408
commit fcd2d30004
10 changed files with 73 additions and 55 deletions

View File

@@ -552,7 +552,7 @@ void calculate_uv_map(unsigned short mapmode)
allqueue(REDRAWIMAGE, 0);
}
MTFace *get_active_tface(EditFace **act_efa, MCol **mcol)
MTFace *get_active_mtface(EditFace **act_efa, MCol **mcol)
{
EditMesh *em = G.editMesh;
EditFace *efa = NULL;
@@ -564,6 +564,9 @@ MTFace *get_active_tface(EditFace **act_efa, MCol **mcol)
for (ese = em->selected.last; ese; ese=ese->prev){
if(ese->type == EDITFACE) {
efa = (EditFace *)ese->data;
if (efa->h)
efa= NULL;
break;
}
}