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:
authorSybren A. Stüvel <sybren@stuvel.eu>2015-01-14 17:57:32 +0300
committerSybren A. Stüvel <sybren@stuvel.eu>2015-01-14 17:57:32 +0300
commit0d6e88b446d667f66bd63d5cdcbdc91339575bf1 (patch)
treeed1ee82c50ee007a2a90e9360c37234c1f4c59d8 /source/blender/editors/metaball/mball_ops.c
parentbcd9b29a0d2cbda58b39a8f64e1cb97030012069 (diff)
Fix operator tooltip MBALL_OT_duplicate_move
Diffstat (limited to 'source/blender/editors/metaball/mball_ops.c')
-rw-r--r--source/blender/editors/metaball/mball_ops.c2
1 files changed, 1 insertions, 1 deletions
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");