diff --git a/source/blender/src/editface.c b/source/blender/src/editface.c index 6e2b054382d..202a7232223 100644 --- a/source/blender/src/editface.c +++ b/source/blender/src/editface.c @@ -637,6 +637,8 @@ void uv_autocalc_tface() int a, b; short cox, coy, mode, adr[2]; + persp(PERSP_VIEW); + me= get_mesh(ob=OBACT); if(me==0 || me->tface==0) return; if(me->totface==0) return; @@ -921,6 +923,8 @@ void uv_autocalc_tface() allqueue(REDRAWIMAGE, 0); myloadmatrix(G.vd->viewmat); MTC_Mat4SwapMat4(G.vd->persmat, mat); + + persp(PERSP_WIN); }