[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [46600] trunk/blender: More work for [ #31429] Curve menu polish.

Thomas Dinges blender at dingto.org
Sun May 13 11:13:47 CEST 2012


Revision: 46600
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=46600
Author:   dingto
Date:     2012-05-13 09:13:47 +0000 (Sun, 13 May 2012)
Log Message:
-----------
More work for [#31429] Curve menu polish.
* Curve Extrude and Duplicate from Toolbar also moves the points now, same as for Mesh and in alignment with the menu. 

* Fixed yet another tooltip. 

Modified Paths:
--------------
    trunk/blender/release/scripts/startup/bl_ui/space_view3d_toolbar.py
    trunk/blender/source/blender/editors/curve/editcurve.c

Modified: trunk/blender/release/scripts/startup/bl_ui/space_view3d_toolbar.py
===================================================================
--- trunk/blender/release/scripts/startup/bl_ui/space_view3d_toolbar.py	2012-05-13 08:16:41 UTC (rev 46599)
+++ trunk/blender/release/scripts/startup/bl_ui/space_view3d_toolbar.py	2012-05-13 09:13:47 UTC (rev 46600)
@@ -231,7 +231,7 @@
 
         col = layout.column(align=True)
         col.label(text="Curve:")
-        col.operator("curve.duplicate")
+        col.operator("curve.duplicate_move", text="Duplicate")
         col.operator("curve.delete")
         col.operator("curve.cyclic_toggle")
         col.operator("curve.switch_direction")
@@ -248,7 +248,7 @@
 
         col = layout.column(align=True)
         col.label(text="Modeling:")
-        col.operator("curve.extrude")
+        col.operator("curve.extrude_move", text="Extrude")
         col.operator("curve.subdivide")
 
         draw_repeat_tools(context, layout)
@@ -273,14 +273,14 @@
 
         col = layout.column(align=True)
         col.label(text="Curve:")
-        col.operator("curve.duplicate")
+        col.operator("curve.duplicate_move", text="Duplicate")
         col.operator("curve.delete")
         col.operator("curve.cyclic_toggle")
         col.operator("curve.switch_direction")
 
         col = layout.column(align=True)
         col.label(text="Modeling:")
-        col.operator("curve.extrude")
+        col.operator("curve.extrude", text="Extrude")
         col.operator("curve.subdivide")
 
         draw_repeat_tools(context, layout)

Modified: trunk/blender/source/blender/editors/curve/editcurve.c
===================================================================
--- trunk/blender/source/blender/editors/curve/editcurve.c	2012-05-13 08:16:41 UTC (rev 46599)
+++ trunk/blender/source/blender/editors/curve/editcurve.c	2012-05-13 09:13:47 UTC (rev 46600)
@@ -4729,7 +4729,7 @@
 {
 	/* identifiers */
 	ot->name = "Extrude";
-	ot->description = "Extrude selected control point(s) and move";
+	ot->description = "Extrude selected control point(s)";
 	ot->idname = "CURVE_OT_extrude";
 	
 	/* api callbacks */




More information about the Bf-blender-cvs mailing list