[Bf-blender-cvs] [342dd5a771c] blender2.8: Workbench: remove the soft limit for the xray_alpha

Jeroen Bakker noreply at git.blender.org
Tue Jun 5 11:46:05 CEST 2018


Commit: 342dd5a771c2c5a67d9ddcfab14246afd6cae321
Author: Jeroen Bakker
Date:   Tue Jun 5 11:45:22 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB342dd5a771c2c5a67d9ddcfab14246afd6cae321

Workbench: remove the soft limit for the xray_alpha

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

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

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

diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index 46a27ff5d6c..0f417c471e7 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -2611,7 +2611,6 @@ static void rna_def_space_view3d_shading(BlenderRNA *brna)
 	RNA_def_property_float_default(prop, 0.5);
 	RNA_def_property_ui_text(prop, "X-Ray Alpha", "Amount of alpha to use");
 	RNA_def_property_range(prop, 0.0f, 1.0f);
-	RNA_def_property_ui_range(prop, 0.04f, 1.0f, 1, 1);
 	RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
 	RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, NULL);



More information about the Bf-blender-cvs mailing list