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:
authorCampbell Barton <ideasman42@gmail.com>2018-05-30 13:56:18 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-05-30 13:56:38 +0300
commit03ec3a61411f8701af104f36af69b2163d1b4278 (patch)
tree336c2e80becb7ea0e09f818109c9e75232f7e8be /source/blender/makesrna/intern/rna_particle.c
parent48ceeead107e84631d89ea68efb7c04a61e3c19a (diff)
Cleanup: remove '.'
Diffstat (limited to 'source/blender/makesrna/intern/rna_particle.c')
-rw-r--r--source/blender/makesrna/intern/rna_particle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_particle.c b/source/blender/makesrna/intern/rna_particle.c
index 52c97130ada..c32314fba71 100644
--- a/source/blender/makesrna/intern/rna_particle.c
+++ b/source/blender/makesrna/intern/rna_particle.c
@@ -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. */
}