Fix #19605: material hardness was wrapped as float while it is an int,

which made number buttons not increase the value on clicking the arrows.
This commit is contained in:
2009-10-19 13:41:02 +00:00
parent c3f18a2d73
commit 51f11abe45

View File

@@ -1338,8 +1338,8 @@ static void rna_def_material_specularity(StructRNA *srna)
* multiple times, which may give somewhat strange changes in the outliner,
* but in the UI they are never visible at the same time. */
prop= RNA_def_property(srna, "specular_hardness", PROP_FLOAT, PROP_NONE);
RNA_def_property_float_sdna(prop, NULL, "har");
prop= RNA_def_property(srna, "specular_hardness", PROP_INT, PROP_NONE);
RNA_def_property_int_sdna(prop, NULL, "har");
RNA_def_property_range(prop, 1, 511);
RNA_def_property_ui_text(prop, "Specular Hardness", "");
RNA_def_property_update(prop, 0, "rna_Material_update");