[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [39374] branches/soc-2011-onion/release/ scripts/startup/bl_ui/space_image.py: uv paint brushes

Antony Riakiotakis kalast at gmail.com
Sun Aug 14 01:06:10 CEST 2011


Revision: 39374
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=39374
Author:   psy-fi
Date:     2011-08-13 23:06:09 +0000 (Sat, 13 Aug 2011)
Log Message:
-----------
uv paint brushes
=================
-expose island and boundary edge operation in the GUI

Modified Paths:
--------------
    branches/soc-2011-onion/release/scripts/startup/bl_ui/space_image.py

Modified: branches/soc-2011-onion/release/scripts/startup/bl_ui/space_image.py
===================================================================
--- branches/soc-2011-onion/release/scripts/startup/bl_ui/space_image.py	2011-08-13 22:44:42 UTC (rev 39373)
+++ branches/soc-2011-onion/release/scripts/startup/bl_ui/space_image.py	2011-08-13 23:06:09 UTC (rev 39374)
@@ -809,9 +809,6 @@
         toolsettings = context.tool_settings.uv_paint
         brush = toolsettings.brush
 
-        col = layout.split().column()
-        row = col.row()
-
         if brush:
             col = layout.column()
 
@@ -823,7 +820,13 @@
             row.prop(brush, "strength", slider=True)
             row.prop(brush, "use_pressure_strength", toggle=True, text="")
 
+        split = layout.split()
+        col = split.column()
 
+        col.prop(context.tool_settings, "uv_paint_pin_edges");
+        col.prop(context.tool_settings, "uv_paint_all_islands");
+        
 
+
 if __name__ == "__main__":  # only for live edit.
     bpy.utils.register_module(__name__)




More information about the Bf-blender-cvs mailing list