[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [25033] trunk/blender: Cleanup:

Thomas Dinges dingto at gmx.de
Mon Nov 30 19:26:53 CET 2009


Revision: 25033
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=25033
Author:   dingto
Date:     2009-11-30 19:26:53 +0100 (Mon, 30 Nov 2009)

Log Message:
-----------
Cleanup:
* Deleted "Add" Prefix for mesh.duplicate_move in Toolbar.
* Renamed "duplicate_ipo" property to "duplicate_fcurve"

Modified Paths:
--------------
    trunk/blender/release/scripts/ui/space_userpref.py
    trunk/blender/release/scripts/ui/space_view3d_toolbar.py
    trunk/blender/source/blender/makesrna/intern/rna_userdef.c

Modified: trunk/blender/release/scripts/ui/space_userpref.py
===================================================================
--- trunk/blender/release/scripts/ui/space_userpref.py	2009-11-30 18:12:16 UTC (rev 25032)
+++ trunk/blender/release/scripts/ui/space_userpref.py	2009-11-30 18:26:53 UTC (rev 25033)
@@ -244,7 +244,7 @@
         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")
 

Modified: trunk/blender/release/scripts/ui/space_view3d_toolbar.py
===================================================================
--- trunk/blender/release/scripts/ui/space_view3d_toolbar.py	2009-11-30 18:12:16 UTC (rev 25032)
+++ trunk/blender/release/scripts/ui/space_view3d_toolbar.py	2009-11-30 18:26:53 UTC (rev 25033)
@@ -102,7 +102,7 @@
         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")
 

Modified: trunk/blender/source/blender/makesrna/intern/rna_userdef.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_userdef.c	2009-11-30 18:12:16 UTC (rev 25032)
+++ trunk/blender/source/blender/makesrna/intern/rna_userdef.c	2009-11-30 18:26:53 UTC (rev 25033)
@@ -1981,9 +1981,9 @@
 	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);





More information about the Bf-blender-cvs mailing list