[Bf-blender-cvs] [2044ee00c21] master: Correct vpaint vertex circle select

Campbell Barton noreply at git.blender.org
Tue Aug 14 08:59:43 CEST 2018


Commit: 2044ee00c211cef95455d1fa5c3bd88a9c68c569
Author: Campbell Barton
Date:   Tue Aug 14 17:01:31 2018 +1000
Branches: master
https://developer.blender.org/rB2044ee00c211cef95455d1fa5c3bd88a9c68c569

Correct vpaint vertex circle select

Would run validate when not needed.

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

M	source/blender/editors/space_view3d/view3d_select.c

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

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



More information about the Bf-blender-cvs mailing list