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:
authorCampbell Barton <ideasman42@gmail.com>2009-10-14 18:28:05 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-10-14 18:28:05 +0400
commit4ef0ef19276209480ec9ad9acbafff1e45a21e82 (patch)
treeea58237cc1aeb6fa53e77bcc200756c721bfeebd /source/blender/editors/mesh/editmesh_mods.c
parent1847f6198e50118e8e6541dfcb351dda40802511 (diff)
added mesh mirror flag, now store this per mesh
button in mesh interface also dont register operators that change context
Diffstat (limited to 'source/blender/editors/mesh/editmesh_mods.c')
-rw-r--r--source/blender/editors/mesh/editmesh_mods.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_mods.c b/source/blender/editors/mesh/editmesh_mods.c
index c4f4cd48d53..288af7f7874 100644
--- a/source/blender/editors/mesh/editmesh_mods.c
+++ b/source/blender/editors/mesh/editmesh_mods.c
@@ -4291,7 +4291,7 @@ static int smooth_vertex(bContext *C, wmOperator *op)
if(eve->f & SELECT) {
if(eve->f1) {
- if (ts->editbutflag & B_MESH_X_MIRROR) {
+ if (((Mesh *)obedit->data)->editflag & ME_EDIT_MIRROR_X) {
eve_mir= editmesh_get_x_mirror_vert(obedit, em, eve->co);
}