[Bf-blender-cvs] [999f3985c07] master: Fix T61107: wmGizmo.test_select can't return -1

Campbell Barton noreply at git.blender.org
Tue Feb 5 08:41:58 CET 2019


Commit: 999f3985c07704f0edbe4e505172859b2e676634
Author: Campbell Barton
Date:   Tue Feb 5 18:38:31 2019 +1100
Branches: master
https://developer.blender.org/rB999f3985c07704f0edbe4e505172859b2e676634

Fix T61107: wmGizmo.test_select can't return -1

This is used to skip selection.

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

M	source/blender/makesrna/intern/rna_wm_gizmo.c

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

diff --git a/source/blender/makesrna/intern/rna_wm_gizmo.c b/source/blender/makesrna/intern/rna_wm_gizmo.c
index 22a08609d09..638967774bd 100644
--- a/source/blender/makesrna/intern/rna_wm_gizmo.c
+++ b/source/blender/makesrna/intern/rna_wm_gizmo.c
@@ -1015,7 +1015,7 @@ static void rna_def_gizmo(BlenderRNA *brna, PropertyRNA *cprop)
 	RNA_def_parameter_flags(parm, PROP_NEVER_NULL, PARM_REQUIRED);
 	parm = RNA_def_int_array(func, "location", 2, NULL, INT_MIN, INT_MAX, "Location", "Region coordinates", INT_MIN, INT_MAX);
 	RNA_def_parameter_flags(parm, PROP_NEVER_NULL, PARM_REQUIRED);
-	parm = RNA_def_int(func, "intersect_id", 0, 0, INT_MAX, "", "", 0, INT_MAX);
+	parm = RNA_def_int(func, "intersect_id", -1, -1, INT_MAX, "", "Use -1 to skip this gizmo", -1, INT_MAX);
 	RNA_def_function_return(func, parm);
 
 	/* wmGizmo.handler */



More information about the Bf-blender-cvs mailing list