Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Bakker <j.bakker@atmind.nl>2018-06-05 12:45:22 +0300
committerJeroen Bakker <j.bakker@atmind.nl>2018-06-05 12:45:22 +0300
commit342dd5a771c2c5a67d9ddcfab14246afd6cae321 (patch)
tree2f351fb3d8ddeb3d910db4eb5f742d77d5f6393e /source/blender
parenta3815f87773c7d45740c98c888718424d736870b (diff)
Workbench: remove the soft limit for the xray_alpha
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/makesrna/intern/rna_space.c1
1 files changed, 0 insertions, 1 deletions
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);