[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [29828] branches/soc-2010-jwilkins/release /scripts/ui/space_view3d_toolbar.py: Implementing Brechts UI recommendations for the texture panel

Tom Musgrove LetterRip at gmail.com
Wed Jun 30 17:40:55 CEST 2010


Revision: 29828
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=29828
Author:   letterrip
Date:     2010-06-30 17:40:54 +0200 (Wed, 30 Jun 2010)

Log Message:
-----------
Implementing Brechts UI recommendations for the texture panel

Modified Paths:
--------------
    branches/soc-2010-jwilkins/release/scripts/ui/space_view3d_toolbar.py

Modified: branches/soc-2010-jwilkins/release/scripts/ui/space_view3d_toolbar.py
===================================================================
--- branches/soc-2010-jwilkins/release/scripts/ui/space_view3d_toolbar.py	2010-06-30 15:25:41 UTC (rev 29827)
+++ branches/soc-2010-jwilkins/release/scripts/ui/space_view3d_toolbar.py	2010-06-30 15:40:54 UTC (rev 29828)
@@ -796,12 +796,11 @@
             if tex_slot.map_mode in ('FIXED', 'TILED'):
                 sub = col.column(align=True)
                 sub.label(text="Scale:")
-                sub.prop(brush, "texture_scale_x", slider=True, text="Width")
-                sub.prop(brush, "texture_scale_y", slider=True, text="Height")
-                sub.prop(brush, "texture_scale_percentage", slider=True, text="")
-                sub.label(text="Center:")
-                sub.prop(brush, "texture_center_x", slider=True, text="Center X")
-                sub.prop(brush, "texture_center_y", slider=True, text="Center Y")
+                sub.prop(brush, "texture_scale_x", slider=True, text="X")
+                sub.prop(brush, "texture_scale_y", slider=True, text="Y")
+                sub.label(text="Offset:")
+                sub.prop(brush, "texture_center_x", slider=True, text="X")
+                sub.prop(brush, "texture_center_y", slider=True, text="Y")
 
                 row = col.row(align=True)
                 row.prop(tex_slot, "angle", slider=True)
@@ -941,7 +940,6 @@
         if sculpt.show_brush:
             col.prop(sculpt, "show_brush_on_surface")
         col.prop(sculpt, "fast_navigate")
-        col.prop(sculpt, "use_openmp")
 
         col.separator()
         if brush.sculpt_tool in ('DRAW', 'INFLATE', 'CLAY', 'WAX', 'PINCH', 'CREASE', 'FLATTEN'):





More information about the Bf-blender-cvs mailing list