[Bf-blender-cvs] [03ec3a61411] blender2.8: Cleanup: remove '.'

Campbell Barton noreply at git.blender.org
Wed May 30 12:57:59 CEST 2018


Commit: 03ec3a61411f8701af104f36af69b2163d1b4278
Author: Campbell Barton
Date:   Wed May 30 12:56:18 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB03ec3a61411f8701af104f36af69b2163d1b4278

Cleanup: remove '.'

===================================================================

M	source/blender/makesrna/intern/rna_particle.c

===================================================================

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. */
 }



More information about the Bf-blender-cvs mailing list