Fix T73568: Vertex selection fails in weight-paint mode

Lasso, circle, box select fails in weight paint mode with modifiers.
This commit is contained in:
Campbell Barton 2020-05-21 19:32:15 +10:00
parent d15efbdc56
commit 376b69cbff
Notes: blender-bot 2023-02-14 11:01:33 +01:00
Referenced by issue #73568, Can't lasso select vertices on deformed mesh in Weight paint mode while in wireframe
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ void meshobject_foreachScreenVert(
Scene *scene_eval = DEG_get_evaluated_scene(vc->depsgraph);
Object *ob_eval = DEG_get_evaluated_object(vc->depsgraph, vc->obact);
me = mesh_get_eval_deform(vc->depsgraph, scene_eval, ob_eval, &CD_MASK_BAREMESH);
me = mesh_get_eval_final(vc->depsgraph, scene_eval, ob_eval, &CD_MASK_BAREMESH);
ED_view3d_check_mats_rv3d(vc->rv3d);