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:
Diffstat (limited to 'source/blender/src/buttons_editing.c')
-rw-r--r--source/blender/src/buttons_editing.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/source/blender/src/buttons_editing.c b/source/blender/src/buttons_editing.c
index 3ad4742730c..ef35971cfa1 100644
--- a/source/blender/src/buttons_editing.c
+++ b/source/blender/src/buttons_editing.c
@@ -2434,6 +2434,7 @@ void do_meshbuts(unsigned short event)
me->totedge= 1;
}
else make_edges(me);
+ DAG_object_flush_update(G.scene, ob, OB_RECALC_DATA);
allqueue(REDRAWBUTSEDIT, 0);
break;
case B_DELEDGES:
@@ -2475,11 +2476,6 @@ void do_meshbuts(unsigned short event)
if(G.obedit) {
flip_editnormals();
}
- else {
- flipnorm_mesh( get_mesh(ob) );
- DAG_object_flush_update(G.scene, ob, OB_RECALC_DATA);
- }
-
allqueue(REDRAWVIEW3D, 0);
break;