[Bf-blender-cvs] [0367e13089a] greasepencil-object: Merge branch 'blender2.8' into greasepencil-object

Antonio Vazquez noreply at git.blender.org
Mon Apr 24 22:55:02 CEST 2017


Commit: 0367e13089a8b4b13bd2baf58030e8d7f52c131f
Author: Antonio Vazquez
Date:   Mon Apr 24 22:16:07 2017 +0200
Branches: greasepencil-object
https://developer.blender.org/rB0367e13089a8b4b13bd2baf58030e8d7f52c131f

Merge branch 'blender2.8' into greasepencil-object

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



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

diff --cc source/blender/editors/gpencil/gpencil_select.c
index ef51819adea,2912a1ac4eb..caf5af56fc2
--- a/source/blender/editors/gpencil/gpencil_select.c
+++ b/source/blender/editors/gpencil/gpencil_select.c
@@@ -985,12 -1002,17 +985,12 @@@ static int gpencil_lasso_select_exec(bC
  			int x0, y0;
  
  			/* convert point coords to screenspace */
 -			if (gpl->parent == NULL) {
 -				gp_point_to_xy(&gsc, gps, pt, &x0, &y0);
 -			}
 -			else {
 -				bGPDspoint pt2;
 -				gp_point_to_parent_space(pt, diff_mat, &pt2);
 -				gp_point_to_xy(&gsc, gps, &pt2, &x0, &y0);
 -			}
 +			bGPDspoint pt2;
 +			gp_point_to_parent_space(pt, diff_mat, &pt2);
 +			gp_point_to_xy(&gsc, gps, &pt2, &x0, &y0);
  			/* test if in lasso boundbox + within the lasso noose */
  			if ((!ELEM(V2D_IS_CLIPPED, x0, y0)) && BLI_rcti_isect_pt(&rect, x0, y0) &&
- 				BLI_lasso_is_point_inside(mcords, mcords_tot, x0, y0, INT_MAX))
+ 			    BLI_lasso_is_point_inside(mcords, mcords_tot, x0, y0, INT_MAX))
  			{
  				if (select) {
  					pt->flag |= GP_SPOINT_SELECT;




More information about the Bf-blender-cvs mailing list