From 4a4fff5b213bbd32d5c43d9e0a664b428cd16389 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Mon, 30 Nov 2009 18:26:53 +0000 Subject: [PATCH] Cleanup: * Deleted "Add" Prefix for mesh.duplicate_move in Toolbar. * Renamed "duplicate_ipo" property to "duplicate_fcurve" --- release/scripts/ui/space_userpref.py | 2 +- release/scripts/ui/space_view3d_toolbar.py | 2 +- source/blender/makesrna/intern/rna_userdef.c | 4 ++-- 3 files changed, 4 insertions(+), 4 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") diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c index f3be443ef60..278d7855f3a 100644 --- a/source/blender/makesrna/intern/rna_userdef.c +++ b/source/blender/makesrna/intern/rna_userdef.c @@ -1981,9 +1981,9 @@ static void rna_def_userdef_edit(BlenderRNA *brna) RNA_def_property_boolean_sdna(prop, NULL, "dupflag", USER_DUP_TEX); RNA_def_property_ui_text(prop, "Duplicate Texture", "Causes texture data to be duplicated with the object."); - prop= RNA_def_property(srna, "duplicate_ipo", PROP_BOOLEAN, PROP_NONE); + prop= RNA_def_property(srna, "duplicate_fcurve", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "dupflag", USER_DUP_IPO); - RNA_def_property_ui_text(prop, "Duplicate Ipo", "Causes ipo data to be duplicated with the object."); + RNA_def_property_ui_text(prop, "Duplicate F-Curve", "Causes F-curve data to be duplicated with the object."); prop= RNA_def_property(srna, "duplicate_action", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "dupflag", USER_DUP_ACT);