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:
authorCampbell Barton <ideasman42@gmail.com>2012-02-25 22:13:58 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-25 22:13:58 +0400
commit0096370db89eaf315a8c75b29076b9b85c83409a (patch)
tree0cbe4e222110aa3513662c2a463a37f1aad94576 /source
parent79f9964cdb99d44dc41785d37a9712ad97b51d4d (diff)
fix for own error edge tagging sharp.
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/mesh/bmesh_select.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/mesh/bmesh_select.c b/source/blender/editors/mesh/bmesh_select.c
index 817c5301780..65d44928e37 100644
--- a/source/blender/editors/mesh/bmesh_select.c
+++ b/source/blender/editors/mesh/bmesh_select.c
@@ -1166,8 +1166,8 @@ static void edgetag_context_set(BMEditMesh *em, Scene *scene, BMEdge *e, int val
else {BM_elem_flag_disable(e, BM_ELEM_SEAM);}
break;
case EDGE_MODE_TAG_SHARP:
- if (val) {BM_elem_flag_enable(e, BM_ELEM_SEAM);}
- else {BM_elem_flag_disable(e, BM_ELEM_SEAM);}
+ if (val) {BM_elem_flag_disable(e, BM_ELEM_SMOOTH);}
+ else {BM_elem_flag_enable(e, BM_ELEM_SMOOTH);}
break;
case EDGE_MODE_TAG_CREASE:
{