Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Poirier <theeth@yahoo.com>2007-10-23 23:57:41 +0400
committerMartin Poirier <theeth@yahoo.com>2007-10-23 23:57:41 +0400
commit7fc1297b3cd2b99667558cdb8b93f300a0d56b69 (patch)
treef65c32a77a881c96764a4fcf6a46fac6c720414b /source/blender/src/space.c
parent8b5de205128cc1842ffd322ada23e29f24387e47 (diff)
Unwrap menu (ukey) only in MESH edit mode, not all edit mode.
Diffstat (limited to 'source/blender/src/space.c')
-rw-r--r--source/blender/src/space.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/space.c b/source/blender/src/space.c
index 559c74b7995..f6f6768e35c 100644
--- a/source/blender/src/space.c
+++ b/source/blender/src/space.c
@@ -2398,7 +2398,7 @@ static void winqreadview3dspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
}
}*/
if(G.obedit) {
- if(G.qual==0) {
+ if(G.obedit->type==OB_MESH && G.qual==0) {
uv_autocalc_tface();
}
}