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:
authorErwin Coumans <blender@erwincoumans.com>2006-06-15 01:02:03 +0400
committerErwin Coumans <blender@erwincoumans.com>2006-06-15 01:02:03 +0400
commit1d44ad8b4cb10a16f788786d2feab121418e60de (patch)
tree5e95d9cee9ae14145b416cb3f5e5171686bc24de /source/blender/src/buttons_logic.c
parentb535b671b3c143840b48d0e065f64d44724b8602 (diff)
renamed 'Size' to Radius in the logic buttons (This naming was confusing, as the 'size' was only used as 'radius' for a rigid body with 'sphere' shapel. It has no effect on box, convex, cylinder and other shapes.
Don't worry, this is unrelated to recent Size -> Scale renaming.
Diffstat (limited to 'source/blender/src/buttons_logic.c')
-rw-r--r--source/blender/src/buttons_logic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/buttons_logic.c b/source/blender/src/buttons_logic.c
index bae88cb3483..cc9d9fd5999 100644
--- a/source/blender/src/buttons_logic.c
+++ b/source/blender/src/buttons_logic.c
@@ -2405,9 +2405,9 @@ void buttons_ketsji(uiBlock *block, Object *ob)
uiDefButF(block, NUM, B_DIFF, "Mass:", 110, 185, 80, 19,
&ob->mass, 0.01, 10000.0, 10, 0,
"The mass of the Object");
- uiDefButF(block, NUM, REDRAWVIEW3D, "Size:", 190, 185, 80, 19,
+ uiDefButF(block, NUM, REDRAWVIEW3D, "Radius:", 190, 185, 80, 19,
&ob->inertia, 0.01, 10.0, 10, 0,
- "Bounding sphere size");
+ "Bounding sphere radius");
uiDefButF(block, NUM, B_DIFF, "Form:", 270, 185, 80, 19,
&ob->formfactor, 0.01, 100.0, 10, 0,
"Form factor");