From 44a99d25967aa3a96b60c45eabc50e5ab9eb7c18 Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Sun, 11 Jul 2004 04:44:50 +0000 Subject: [PATCH] Some tiny dialog message cleaning for easier scan-reading. --- source/blender/src/editobject.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/blender/src/editobject.c b/source/blender/src/editobject.c index 451964a2fe2..0a995064bda 100644 --- a/source/blender/src/editobject.c +++ b/source/blender/src/editobject.c @@ -598,7 +598,7 @@ void make_vertex_parent(void) return; } - if(okee("Make vertex-parent")==0) return; + if(okee("Make vertex parent")==0) return; base= FIRSTBASE; while(base) { @@ -781,11 +781,11 @@ void make_parent(void) if TESTBASELIB(base) { if(base!=BASACT) { if(base->object->type==OB_MESH) { - mode= pupmenu("Make Parent %t|Use Bone %x1|Use Armature %x2|Use Object %x3"); + mode= pupmenu("Make Parent To%t|Bone %x1|Armature %x2|Object %x3"); break; } else { - mode= pupmenu("Make Parent %t|Use Bone %x1|Use Object %x3"); + mode= pupmenu("Make Parent To %t|Bone %x1|Object %x3"); break; } }