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
path: root/source
diff options
context:
space:
mode:
authorWilliam Reynish <billrey@me.com>2020-02-06 12:55:09 +0300
committerWilliam Reynish <billrey@me.com>2020-02-06 12:55:09 +0300
commit2c5379b405d8baf6220e390b81a0d48409aeef75 (patch)
tree2d342221d5f1759f4715dfdfa424a1265037220e /source
parentd7429e76b8ac6a39ea0c917cb53655f12fa74636 (diff)
Fix T73620: Diameter Scale was calles 'Radius'
This was left over from when the other properties were renamed.
Diffstat (limited to 'source')
-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 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. */
}