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>2009-11-30 21:26:53 +0300
committerThomas Dinges <blender@dingto.org>2009-11-30 21:26:53 +0300
commit4a4fff5b213bbd32d5c43d9e0a664b428cd16389 (patch)
tree5aa655545dede2fa114a898ce81893f87cc3f815 /release/scripts
parente31810971476b74cf3413c909c12ffe9b1658150 (diff)
Cleanup:
* Deleted "Add" Prefix for mesh.duplicate_move in Toolbar. * Renamed "duplicate_ipo" property to "duplicate_fcurve"
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/ui/space_userpref.py2
-rw-r--r--release/scripts/ui/space_view3d_toolbar.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py
index ec459146e5c..69f75b54482 100644
--- a/release/scripts/ui/space_userpref.py
+++ b/release/scripts/ui/space_userpref.py
@@ -244,7 +244,7 @@ class USERPREF_PT_edit(bpy.types.Panel):
sub1.prop(edit, "duplicate_lamp", text="Lamp")
sub1.prop(edit, "duplicate_material", text="Material")
sub1.prop(edit, "duplicate_texture", text="Texture")
- sub1.prop(edit, "duplicate_ipo", text="F-Curve")
+ sub1.prop(edit, "duplicate_fcurve", text="F-Curve")
sub1.prop(edit, "duplicate_action", text="Action")
sub1.prop(edit, "duplicate_particle", text="Particle")
diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py
index 8559efa42c6..61707b60631 100644
--- a/release/scripts/ui/space_view3d_toolbar.py
+++ b/release/scripts/ui/space_view3d_toolbar.py
@@ -102,7 +102,7 @@ class VIEW3D_PT_tools_meshedit(View3DPanel):
col.operator("mesh.extrude_move")
col.operator("mesh.subdivide")
col.operator("mesh.loopcut_slide")
- col.operator("mesh.duplicate_move")
+ col.operator("mesh.duplicate_move", text="Duplicate")
col.operator("mesh.spin")
col.operator("mesh.screw")