[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [45901] trunk/blender: add inset and bridge to mesh specials menu (along side bevel) + typo fix.

Campbell Barton ideasman42 at gmail.com
Tue Apr 24 03:04:39 CEST 2012


Revision: 45901
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=45901
Author:   campbellbarton
Date:     2012-04-24 01:04:37 +0000 (Tue, 24 Apr 2012)
Log Message:
-----------
add inset and bridge to mesh specials menu (along side bevel) + typo fix.

Modified Paths:
--------------
    trunk/blender/release/scripts/startup/bl_ui/space_view3d.py
    trunk/blender/source/blender/makesdna/DNA_sequence_types.h

Modified: trunk/blender/release/scripts/startup/bl_ui/space_view3d.py
===================================================================
--- trunk/blender/release/scripts/startup/bl_ui/space_view3d.py	2012-04-23 23:57:17 UTC (rev 45900)
+++ trunk/blender/release/scripts/startup/bl_ui/space_view3d.py	2012-04-24 01:04:37 UTC (rev 45901)
@@ -1607,7 +1607,9 @@
         layout.operator("mesh.select_all", text="Select Inverse").action = 'INVERT'
         layout.operator("mesh.flip_normals")
         layout.operator("mesh.vertices_smooth", text="Smooth")
+        layout.operator("mesh.inset")
         layout.operator("mesh.bevel", text="Bevel")
+        layout.operator("mesh.bridge_edge_loops")
         layout.operator("mesh.faces_shade_smooth")
         layout.operator("mesh.faces_shade_flat")
         layout.operator("mesh.blend_from_shape")

Modified: trunk/blender/source/blender/makesdna/DNA_sequence_types.h
===================================================================
--- trunk/blender/source/blender/makesdna/DNA_sequence_types.h	2012-04-23 23:57:17 UTC (rev 45900)
+++ trunk/blender/source/blender/makesdna/DNA_sequence_types.h	2012-04-24 01:04:37 UTC (rev 45901)
@@ -133,7 +133,7 @@
 	char name[64]; /* SEQ_NAME_MAXSTR - name, set by default and needs to be unique, for RNA paths */
 
 	int flag, type;	/*flags bitmap (see below) and the type of sequence*/
-	int len; /* the length of the contense of this strip - before handles are applied */
+	int len; /* the length of the contents of this strip - before handles are applied */
 	int start, startofs, endofs;
 	int startstill, endstill;
 	int machine, depth; /*machine - the strip channel, depth - the depth in the sequence when dealing with metastrips */




More information about the Bf-blender-cvs mailing list