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:
authorSebastian Parborg <darkdefende@gmail.com>2019-08-09 18:25:47 +0300
committerSebastian Parborg <darkdefende@gmail.com>2019-08-09 18:26:54 +0300
commit899c85a1189ecd81d467fd6139574c5237218517 (patch)
tree495d59d1debf355b9ee92b563a773be73442371a /source
parent58f38ff5c1a392b40129cad100e8c1e5371d7169 (diff)
Fix T67821: Snap to Symmetry not updating
Added a missing depsgraph update.
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index 8af0760c841..cb147772b6a 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -7347,6 +7347,7 @@ static int mesh_symmetry_snap_exec(bContext *C, wmOperator *op)
}
}
}
+ EDBM_update_generic(em, false, false);
/* No need to end cache, just free the array. */
MEM_freeN(index);