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-22 11:34:53 +0300
committerNicholas Bishop <nicholasbishop@gmail.com>2007-01-22 11:34:53 +0300
commitd58cc7b9e6b7de9da19f4ed2b2aae0b37084d8ca (patch)
treee0c93df8eb1f29f6e9dedc78c3b487bec4d4f93a /source/blender/src/editmesh_mods.c
parentcbbd736a9d1d73b68e2542d29d9dce852b006cfd (diff)
== Multires ==
Partial fix for bug #5771, Multires tool deletes crease flags on edges * Modified the edge flags code to support all of the edge flags (not just seams.) * Added a new array to the Multires struct to store creases. * For Mark Sharp, Clear Sharp, and Crease, displays an error if applied to a multires mesh not on level 1.
Diffstat (limited to 'source/blender/src/editmesh_mods.c')
-rw-r--r--source/blender/src/editmesh_mods.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/src/editmesh_mods.c b/source/blender/src/editmesh_mods.c
index 5944c77e045..57624e5b94a 100644
--- a/source/blender/src/editmesh_mods.c
+++ b/source/blender/src/editmesh_mods.c
@@ -2635,6 +2635,8 @@ void editmesh_mark_sharp(int set)
}
#endif
+ if(multires_level1_test()) return;
+
if(set) {
eed= em->edges.first;
while(eed) {