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:
authorThomas Dinges <blender@dingto.org>2012-05-13 00:50:46 +0400
committerThomas Dinges <blender@dingto.org>2012-05-13 00:50:46 +0400
commited12a5d001a5521cf71d740c2e48c62e6a67b8bd (patch)
treed23d27d1b961f1054bf01c20f22f0bfb86c40f85
parent9892736206676c5b7fabc8d1184f9655511ff2dd (diff)
3D View:
* Changed Duplicate and Exture Operator fpr Curves/Surfaces to Duplicate/Extrude and Move, like for Mesh objects, for consistency. This is also consistent with Shift+D and E shortcut. This fixes [#31429] Curve menu polish. * Fixed a wrong tooltip for metaball duplication.
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py4
-rw-r--r--source/blender/editors/metaball/mball_edit.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 3b7eb314bab..7486eb32f5c 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -1937,8 +1937,8 @@ def draw_curve(self, context):
layout.separator()
- layout.operator("curve.extrude")
- layout.operator("curve.duplicate")
+ layout.operator("curve.extrude_move")
+ layout.operator("curve.duplicate_move")
layout.operator("curve.separate")
layout.operator("curve.make_segment")
layout.operator("curve.cyclic_toggle")
diff --git a/source/blender/editors/metaball/mball_edit.c b/source/blender/editors/metaball/mball_edit.c
index ed51f53eb03..701a3517535 100644
--- a/source/blender/editors/metaball/mball_edit.c
+++ b/source/blender/editors/metaball/mball_edit.c
@@ -275,7 +275,7 @@ void MBALL_OT_duplicate_metaelems(wmOperatorType *ot)
{
/* identifiers */
ot->name = "Duplicate Metaelements";
- ot->description = "Delete selected metaelement(s)";
+ ot->description = "Duplicate selected metaelement(s)";
ot->idname = "MBALL_OT_duplicate_metaelems";
/* callback functions */