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:
authorBastien Montagne <montagne29@wanadoo.fr>2015-11-01 21:57:52 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-11-01 21:58:41 +0300
commit8e7eb0b733ea0729eb6274f4c49b198f7ac0adc9 (patch)
treeb9a62d089f8dde64f8bf345bc1d80fae56e534c6 /source/blender/makesrna/intern/rna_mesh.c
parent9bce104c8c72cdd4deac8e59ce571892302fb366 (diff)
Fix T46660: No need to set explicitely UI range of auto smooth angle anymore.
Diffstat (limited to 'source/blender/makesrna/intern/rna_mesh.c')
-rw-r--r--source/blender/makesrna/intern/rna_mesh.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_mesh.c b/source/blender/makesrna/intern/rna_mesh.c
index f1b535168c5..2a106363f91 100644
--- a/source/blender/makesrna/intern/rna_mesh.c
+++ b/source/blender/makesrna/intern/rna_mesh.c
@@ -3460,7 +3460,6 @@ static void rna_def_mesh(BlenderRNA *brna)
RNA_def_property_float_sdna(prop, NULL, "smoothresh");
RNA_def_property_float_default(prop, DEG2RADF(180.0f));
RNA_def_property_range(prop, 0.0f, DEG2RADF(180.0f));
- RNA_def_property_ui_range(prop, DEG2RADF(0.0f), DEG2RADF(180.0f), 1.0, 1);
RNA_def_property_ui_text(prop, "Auto Smooth Angle",
"Maximum angle between face normals that will be considered as smooth "
"(unused if custom split normals data are available)");