From 0d6e88b446d667f66bd63d5cdcbdc91339575bf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Wed, 14 Jan 2015 15:57:32 +0100 Subject: [PATCH] Fix operator tooltip MBALL_OT_duplicate_move --- source/blender/editors/metaball/mball_ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/metaball/mball_ops.c b/source/blender/editors/metaball/mball_ops.c index 0723bb4e62d..3af85c33bcc 100644 --- a/source/blender/editors/metaball/mball_ops.c +++ b/source/blender/editors/metaball/mball_ops.c @@ -60,7 +60,7 @@ void ED_operatormacros_metaball(void) wmOperatorTypeMacro *otmacro; ot = WM_operatortype_append_macro("MBALL_OT_duplicate_move", "Duplicate", - "Make copies of the selected bones within the same armature and move them", + "Make copies of the selected metaelements and move them", OPTYPE_UNDO | OPTYPE_REGISTER); WM_operatortype_macro_define(ot, "MBALL_OT_duplicate_metaelems"); otmacro = WM_operatortype_macro_define(ot, "TRANSFORM_OT_translate");