[Bf-blender-cvs] [899c85a1189] master: Fix T67821: Snap to Symmetry not updating

Sebastian Parborg noreply at git.blender.org
Fri Aug 9 17:26:42 CEST 2019


Commit: 899c85a1189ecd81d467fd6139574c5237218517
Author: Sebastian Parborg
Date:   Fri Aug 9 17:25:47 2019 +0200
Branches: master
https://developer.blender.org/rB899c85a1189ecd81d467fd6139574c5237218517

Fix T67821: Snap to Symmetry not updating

Added a missing depsgraph update.

===================================================================

M	source/blender/editors/mesh/editmesh_tools.c

===================================================================

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);



More information about the Bf-blender-cvs mailing list