[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [39088] branches/soc-2011-avocado/blender/ release/scripts/startup/bl_ui/space_view3d_toolbar.py: incremental commit to bmesh retopo build tool.

Dan Walters dan683 at gmail.com
Sat Aug 6 00:17:23 CEST 2011


Revision: 39088
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=39088
Author:   dan_w
Date:     2011-08-05 22:17:23 +0000 (Fri, 05 Aug 2011)
Log Message:
-----------
incremental commit to bmesh retopo build tool. added ui button

Modified Paths:
--------------
    branches/soc-2011-avocado/blender/release/scripts/startup/bl_ui/space_view3d_toolbar.py

Modified: branches/soc-2011-avocado/blender/release/scripts/startup/bl_ui/space_view3d_toolbar.py
===================================================================
--- branches/soc-2011-avocado/blender/release/scripts/startup/bl_ui/space_view3d_toolbar.py	2011-08-05 22:12:27 UTC (rev 39087)
+++ branches/soc-2011-avocado/blender/release/scripts/startup/bl_ui/space_view3d_toolbar.py	2011-08-05 22:17:23 UTC (rev 39088)
@@ -145,6 +145,10 @@
         col.operator("mesh.remove_doubles")
 
         col = layout.column(align=True)
+        col.label(text="Retopo:")
+        col.operator("mesh.retopo_build", text="Build")
+
+        col = layout.column(align=True)
         col.label(text="Normals:")
         col.operator("mesh.normals_make_consistent", text="Recalculate")
         col.operator("mesh.flip_normals", text="Flip Direction")
@@ -154,7 +158,6 @@
         col.operator("wm.call_menu", text="Unwrap").name = "VIEW3D_MT_uv_map"
         col.operator("mesh.mark_seam")
         col.operator("mesh.mark_seam", text="Clear Seam").clear = True
-        col.operator("mesh.generate_seam")
 
         col = layout.column(align=True)
         col.label(text="Shading:")
@@ -1249,7 +1252,7 @@
         if pe.type == 'PARTICLES':
             if ob.particle_systems:
                 if len(ob.particle_systems) > 1:
-                    layout.template_list(ob, "particle_systems", ob.particle_systems, "active_index", rows=2, maxrows=3)
+                    layout.template_list(ob, "particle_systems", ob.particle_systems, "active_index", type='ICONS')
 
                 ptcache = ob.particle_systems.active.point_cache
         else:
@@ -1258,7 +1261,7 @@
                     ptcache = md.point_cache
 
         if ptcache and len(ptcache.point_caches) > 1:
-            layout.template_list(ptcache, "point_caches", ptcache.point_caches, "active_index", rows=2, maxrows=3)
+            layout.template_list(ptcache, "point_caches", ptcache.point_caches, "active_index", type='ICONS')
 
         if not pe.is_editable:
             layout.label(text="Point cache must be baked")




More information about the Bf-blender-cvs mailing list