Fix #26989: Smooth tangent Iteration field in Curve panel not responding.

Not sure what's the uint of step argument for RNA_def_property_ui_range, but
i just set the same values as in other cases used (like Camera.draw_size)
This commit is contained in:
Sergey Sharybin 2011-04-17 12:13:02 +00:00
parent 163dbded30
commit d00f664ee0

@ -1355,7 +1355,7 @@ static void rna_def_curve(BlenderRNA *brna)
// XXX - would be nice to have a better way to do this, only add for testing.
prop= RNA_def_property(srna, "twist_smooth", PROP_FLOAT, PROP_NONE);
RNA_def_property_float_sdna(prop, NULL, "twist_smooth");
RNA_def_property_ui_range(prop, 0, 100.0, 0.1, 0);
RNA_def_property_ui_range(prop, 0, 100.0, 1, 2);
RNA_def_property_ui_text(prop, "Twist Smooth", "Smoothing iteration for tangents");
RNA_def_property_update(prop, 0, "rna_Curve_update_data");