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
path: root/source
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-03-05 18:25:52 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-03-05 18:25:52 +0400
commitaa0eb72c1839c63d2894b8ebeeb6842f282879b6 (patch)
tree89afe79258eeb45494ea00c6a0c7b0112fe1bcf1 /source
parent0fe519f14a9bc43f4d5c8f5bbd04013f4ca5e32e (diff)
Fix for missed faces in mesh after switching active shape key in edit mode.
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesrna/intern/rna_object.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c
index 433f89309d5..c9881efd73b 100644
--- a/source/blender/makesrna/intern/rna_object.c
+++ b/source/blender/makesrna/intern/rna_object.c
@@ -228,6 +228,7 @@ void rna_Object_active_shape_update(Main *bmain, Scene *scene, PointerRNA *ptr)
case OB_MESH:
EDBM_LoadEditBMesh(scene, ob);
EDBM_MakeEditBMesh(scene->toolsettings, scene, ob);
+ BMEdit_RecalcTessellation(((Mesh*)ob->data)->edit_btmesh);
break;
case OB_CURVE:
case OB_SURF: