[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [4553] contrib/py/scripts/addons/ oscurart_tools/__init__.py: Improves in Render Layout

Eugenio Pignataro info at oscurart.com.ar
Sun Jun 2 14:27:56 CEST 2013


Revision: 4553
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=4553
Author:   oscurart
Date:     2013-06-02 12:27:55 +0000 (Sun, 02 Jun 2013)
Log Message:
-----------
Improves in Render Layout

Modified Paths:
--------------
    contrib/py/scripts/addons/oscurart_tools/__init__.py

Modified: contrib/py/scripts/addons/oscurart_tools/__init__.py
===================================================================
--- contrib/py/scripts/addons/oscurart_tools/__init__.py	2013-05-29 19:59:47 UTC (rev 4552)
+++ contrib/py/scripts/addons/oscurart_tools/__init__.py	2013-06-02 12:27:55 UTC (rev 4553)
@@ -213,18 +213,18 @@
 
 
         colrow = col.row(align=1)
-        colrow.prop(bpy.context.scene, "rcPARTS", text="Render Crop Parts")
         colrow.operator("render.render_crop_osc", icon="RENDER_REGION")
+        colrow.prop(bpy.context.scene, "rcPARTS", text="Render Crop Parts")        
         
-        col = layout.column(align=1)
-        colrow = col.row(align=1)
-        colrow.prop(bpy.context.scene, "use_render_scene", text="")  
+        boxcol = layout.box().column(align=1)
+        colrow = boxcol.row(align=1)
+        #colrow.prop(bpy.context.scene, "use_render_scene", text="")  
         colrow.operator("render.render_selected_scenes_osc", icon="RENDER_STILL", text="Selected Scenes").frametype=False
         colrow.operator("render.render_selected_scenes_osc", icon="RENDER_STILL", text="> Fame").frametype=True
 
         for sc in bpy.data.scenes[:]:
-            col = layout.column(align=1)
-            col.prop(sc, "use_render_scene", text=sc.name)    
+            #col = layout.column(align=1)
+            boxcol.prop(sc, "use_render_scene", text=sc.name)    
 
 class OscPanelFiles(OscPollFiles, bpy.types.Panel):
     bl_idname = "Oscurart Files Tools"



More information about the Bf-extensions-cvs mailing list