[Bf-blender-cvs] [2c5379b405d] master: Fix T73620: Diameter Scale was calles 'Radius'

William Reynish noreply at git.blender.org
Thu Feb 6 10:55:10 CET 2020


Commit: 2c5379b405d8baf6220e390b81a0d48409aeef75
Author: William Reynish
Date:   Thu Feb 6 10:55:09 2020 +0100
Branches: master
https://developer.blender.org/rB2c5379b405d8baf6220e390b81a0d48409aeef75

Fix T73620: Diameter Scale was calles 'Radius'

This was left over from when the other properties were renamed.

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

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 d779ae9178c..a61a78f1aac 100644
--- a/source/blender/makesrna/intern/rna_particle.c
+++ b/source/blender/makesrna/intern/rna_particle.c
@@ -3481,7 +3481,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, "Radius Scale", "Multiplier of radius properties");
+  RNA_def_property_ui_text(prop, "Diameter Scale", "Multiplier of diameter 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