Cleanup: remove '.'

This commit is contained in:
Campbell Barton 2018-05-30 12:56:18 +02:00
parent 48ceeead10
commit 03ec3a6141
1 changed files with 1 additions and 1 deletions

View File

@ -3177,7 +3177,7 @@ static void rna_def_particle_settings(BlenderRNA *brna)
RNA_def_property_float_sdna(prop, NULL, "rad_scale");
RNA_def_property_range(prop, 0.0f, FLT_MAX);
RNA_def_property_ui_range(prop, 0.0f, 10.0f, 0.1, 2);
RNA_def_property_ui_text(prop, "Scaling", "Multiplier of radius properties.");
RNA_def_property_ui_text(prop, "Scaling", "Multiplier of radius properties");
RNA_def_property_update(prop, 0, "rna_Particle_redo"); /* TODO: Only need to tell the render engine to update. */
}