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:
authorTon Roosendaal <ton@blender.org>2004-12-13 19:46:40 +0300
committerTon Roosendaal <ton@blender.org>2004-12-13 19:46:40 +0300
commit900b9521371c92e4a42b7b81b859b9ae579bc67e (patch)
treeda9cfb3d6e79f36777198cd5b1cf216ee723f48c
parent021087de453c2b9591a63259fcb03113f012dae8 (diff)
Bug fix #2013
Face dots didn't recalculate after a 'snap to grid' or 'snap to cursor'.
-rw-r--r--source/blender/src/edit.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/source/blender/src/edit.c b/source/blender/src/edit.c
index 370b868640c..c4038de7d0e 100644
--- a/source/blender/src/edit.c
+++ b/source/blender/src/edit.c
@@ -764,8 +764,7 @@ void snap_sel_to_grid()
calc_trans_verts(); // does test2d, makedisplist too */
- if (G.obedit->type == OB_ARMATURE)
- special_trans_update(0);
+ special_trans_update(0);
allqueue(REDRAWVIEW3D, 0);
return;
@@ -849,8 +848,7 @@ void snap_sel_to_curs()
calc_trans_verts(); // does test2d, makedisplist too */
- if (G.obedit->type == OB_ARMATURE)
- special_trans_update(0);
+ special_trans_update(0);
allqueue(REDRAWVIEW3D, 0);
return;
@@ -1160,8 +1158,7 @@ void snap_to_center()
if ELEM(G.obedit->type, OB_SURF, OB_CURVE) makeDispList(G.obedit);
- if (G.obedit->type == OB_ARMATURE)
- special_trans_update(0);
+ special_trans_update(0);
allqueue(REDRAWVIEW3D, 0);
return;