From 2044ee00c211cef95455d1fa5c3bd88a9c68c569 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 14 Aug 2018 17:01:31 +1000 Subject: [PATCH] Correct vpaint vertex circle select Would run validate when not needed. --- source/blender/editors/space_view3d/view3d_select.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/space_view3d/view3d_select.c b/source/blender/editors/space_view3d/view3d_select.c index 12eb2fc0f2b..d8c21da48a4 100644 --- a/source/blender/editors/space_view3d/view3d_select.c +++ b/source/blender/editors/space_view3d/view3d_select.c @@ -2495,7 +2495,7 @@ static void paint_vertsel_circle_select(ViewContext *vc, const bool select, cons meshobject_foreachScreenVert(vc, paint_vertsel_circle_select_doSelectVert, &data, V3D_PROJ_TEST_CLIP_DEFAULT); } - if (select != LEFTMOUSE) { + if (select == false) { BKE_mesh_mselect_validate(me); } paintvert_flush_flags(ob);