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:
authorNicholas Bishop <nicholasbishop@gmail.com>2007-01-27 02:35:37 +0300
committerNicholas Bishop <nicholasbishop@gmail.com>2007-01-27 02:35:37 +0300
commitc7b50435dad54393cf948c0772db54451692375c (patch)
tree598ce745b9a9ee98d8466c8eb157c062b4aeeb62 /source/blender
parent4494b829b088054966388b29f0705376bf8622a5 (diff)
== Multires ==
* Switching levels in editmode should flush selection changes so that face selection is drawn correctly.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/src/multires.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/src/multires.c b/source/blender/src/multires.c
index dae030de869..3bc91e324ff 100644
--- a/source/blender/src/multires.c
+++ b/source/blender/src/multires.c
@@ -1167,6 +1167,8 @@ void multires_level_to_mesh(Object *ob, Mesh *me)
}
}
}
+
+ EM_select_flush();
multires_customdata_to_mesh(me, em, lvl, &me->mr->vdata, em ? &em->vdata : &me->vdata, CD_MDEFORMVERT);
multires_customdata_to_mesh(me, em, lvl, &me->mr->fdata, em ? &em->fdata : &me->fdata, CD_MTFACE);