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:
authorCampbell Barton <ideasman42@gmail.com>2012-09-12 10:31:26 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-09-12 10:31:26 +0400
commit9a07bd78fc95b8bfc7f565af232fa7bec5213d5a (patch)
tree6ee40ca721717fc9acec9199a0545b8db468a30a /source
parent77e351300bffc52eb8ac3cc35a0bedb49efab9a4 (diff)
add clarification, without this the tool reads as if it makes the radius of each selected vertex equal.
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/object/object_modifier.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/object/object_modifier.c b/source/blender/editors/object/object_modifier.c
index 2b1492aa732..4858fdf1c35 100644
--- a/source/blender/editors/object/object_modifier.c
+++ b/source/blender/editors/object/object_modifier.c
@@ -1658,7 +1658,7 @@ static int skin_radii_equalize_exec(bContext *C, wmOperator *UNUSED(op))
void OBJECT_OT_skin_radii_equalize(wmOperatorType *ot)
{
ot->name = "Skin Radii Equalize";
- ot->description = "Make skin radii of selected vertices equal";
+ ot->description = "Make skin radii of selected vertices equal on each axis";
ot->idname = "OBJECT_OT_skin_radii_equalize";
ot->poll = skin_edit_poll;