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:
authorWilliam Reynish <billrey@me.com>2020-01-06 23:54:56 +0300
committerWilliam Reynish <billrey@me.com>2020-01-06 23:54:56 +0300
commit3a35301fd16d9230932a148f0cf64ed6bef9e38b (patch)
tree8173cb0547da64fd1b41f1d526d8e7f5dc72d1e0 /release
parent58e88d3816bb3c967e2c54c8e68fde724c68b372 (diff)
Fix T70821: Hair Radius Is Actually Hair Diameter
Renamed hair tip and root properties to be called diameter rather than radius. The old name was incorrect.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_particle.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/properties_particle.py b/release/scripts/startup/bl_ui/properties_particle.py
index 21abf8bb34c..b83eca1ab74 100644
--- a/release/scripts/startup/bl_ui/properties_particle.py
+++ b/release/scripts/startup/bl_ui/properties_particle.py
@@ -1961,8 +1961,8 @@ class PARTICLE_PT_hair_shape(ParticleButtonsPanel, Panel):
layout.prop(part, "shape", text="Strand Shape")
col = layout.column(align=True)
- col.prop(part, "root_radius", text="Radius Root")
- col.prop(part, "tip_radius", text="Tip")
+ col.prop(part, "root_diameter", text="Diameter Root")
+ col.prop(part, "tip_diameter", text="Tip")
col = layout.column()
col.prop(part, "radius_scale")