Fix T46660: No need to set explicitely UI range of auto smooth angle anymore.

This commit is contained in:
Bastien Montagne 2015-11-01 19:57:52 +01:00
parent 9bce104c8c
commit 8e7eb0b733
Notes: blender-bot 2023-02-14 08:28:46 +01:00
Referenced by issue #46660, Field sensitivity - Data object panel auto smooth
1 changed files with 0 additions and 1 deletions

View File

@ -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)");