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:
authorTon Roosendaal <ton@blender.org>2004-10-30 18:11:05 +0400
committerTon Roosendaal <ton@blender.org>2004-10-30 18:11:05 +0400
commitf3a6e55c82e1abe714907882001accd736a339f1 (patch)
tree270c86d949652129b62f7cab4503c3a76b3d97e9 /source
parentd149a79ad10c12dd68b87fdc3af695db08635cf8 (diff)
Crease edit (SHIFT+E) didnt use the proper edge selection flag yet.
(Bug 1709)
Diffstat (limited to 'source')
-rw-r--r--source/blender/src/editobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editobject.c b/source/blender/src/editobject.c
index d2abf0cf28d..b4e03352279 100644
--- a/source/blender/src/editobject.c
+++ b/source/blender/src/editobject.c
@@ -6087,7 +6087,7 @@ void transform(int mode)
if(dist<1.0) dist= 2.0*(dist-0.5);
for(tot= 0, ee = em->edges.first; ee; ee= ee->next, tot++) {
- if ((ee->v1->f & 1) && (ee->v2->f & 1)) {
+ if(ee->f & SELECT) {
/* this edge is selected */
if(dist<1.0)
ee->crease = (1.0 - dist) + dist*edge_creases[tot];