Possible fix for #32446: after undo in mesh edit mode, vertex/edge/face

selection syncing would not work correct, in this case deselecting an edge
would deselect the two vertices even if it wasn't needed.
This commit is contained in:
Brecht Van Lommel
2012-08-30 14:18:14 +00:00
parent 09af2fecfb
commit dfd54c61d1

View File

@@ -580,6 +580,7 @@ static void undoMesh_to_editbtMesh(void *umv, void *em_v, void *UNUSED(obdata))
*em = *em_tmp;
em->selectmode = um->selectmode;
bm->selectmode = um->selectmode;
em->ob = ob;
MEM_freeN(em_tmp);