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:
authorCampbell Barton <ideasman42@gmail.com>2010-02-05 18:07:44 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-02-05 18:07:44 +0300
commit31955feba15cc243cb54d3532ca504cf2de38bec (patch)
treee535b5581bb376d905b5a2eaad61ebfaa0966902 /source/blender/editors/mesh
parent2973ffbb49251d7cfb22af6033c91f74f0ca03b6 (diff)
active face was incorrectly set on entering editmode.
Diffstat (limited to 'source/blender/editors/mesh')
-rw-r--r--source/blender/editors/mesh/editmesh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh.c b/source/blender/editors/mesh/editmesh.c
index 106062c4087..0b104e02669 100644
--- a/source/blender/editors/mesh/editmesh.c
+++ b/source/blender/editors/mesh/editmesh.c
@@ -894,7 +894,7 @@ void make_editMesh(Scene *scene, Object *ob)
}
}
- if(EM_get_actFace(em, 0) && efa_last_sel) {
+ if(EM_get_actFace(em, 0)==NULL && efa_last_sel) {
EM_set_actFace(em, efa_last_sel);
}