[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [30318] branches/soc-2010-jwilkins/release /scripts/ui/space_userpref.py: * put 'Overlay Color:' label to left of color.

Jason Wilkins Jason.A.Wilkins at gmail.com
Wed Jul 14 13:44:05 CEST 2010


Revision: 30318
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=30318
Author:   jwilkins
Date:     2010-07-14 13:44:05 +0200 (Wed, 14 Jul 2010)

Log Message:
-----------
* put 'Overlay Color:' label to left of color.  It needs to be made narrower though

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

Modified: branches/soc-2010-jwilkins/release/scripts/ui/space_userpref.py
===================================================================
--- branches/soc-2010-jwilkins/release/scripts/ui/space_userpref.py	2010-07-14 11:32:55 UTC (rev 30317)
+++ branches/soc-2010-jwilkins/release/scripts/ui/space_userpref.py	2010-07-14 11:44:05 UTC (rev 30318)
@@ -332,7 +332,9 @@
         col.label(text="Paint and Sculpt:")
         col.prop(edit, "sculpt_paint_use_unified_size", text="Unify Size")
         col.prop(edit, "sculpt_paint_use_unified_strength", text="Unify Strength")
-        col.prop(edit, "sculpt_paint_overlay_col", text="Overlay Color")
+        row = col.row(align=True)
+        row.label("Overlay Color:")
+        row.prop(edit, "sculpt_paint_overlay_col", text="")
         col.prop(sculpt, "use_openmp", text="Threaded Sculpt")
         col.prop(sculpt, "show_brush")
 





More information about the Bf-blender-cvs mailing list