[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [23715] trunk/blender/source/blender/ editors/interface/resources.c: unselected group color was too hard to see in the 3D view, made darker

Campbell Barton ideasman42 at gmail.com
Thu Oct 8 16:11:09 CEST 2009


Revision: 23715
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=23715
Author:   campbellbarton
Date:     2009-10-08 16:11:06 +0200 (Thu, 08 Oct 2009)

Log Message:
-----------
unselected group color was too hard to see in the 3D view, made darker

Modified Paths:
--------------
    trunk/blender/source/blender/editors/interface/resources.c

Modified: trunk/blender/source/blender/editors/interface/resources.c
===================================================================
--- trunk/blender/source/blender/editors/interface/resources.c	2009-10-08 12:33:51 UTC (rev 23714)
+++ trunk/blender/source/blender/editors/interface/resources.c	2009-10-08 14:11:06 UTC (rev 23715)
@@ -456,7 +456,7 @@
 	SETCOL(btheme->tv3d.lamp,       0, 0, 0, 40);
 	SETCOL(btheme->tv3d.select, 241, 88, 0, 255);
 	SETCOL(btheme->tv3d.active, 255, 140, 25, 255);
-	SETCOL(btheme->tv3d.group,      16, 64, 16, 255);
+	SETCOL(btheme->tv3d.group,      8, 48, 8, 255);
 	SETCOL(btheme->tv3d.group_active, 85, 187, 85, 255);
 	SETCOL(btheme->tv3d.transform, 0xff, 0xff, 0xff, 255);
 	SETCOL(btheme->tv3d.vertex, 0, 0, 0, 255);
@@ -1018,7 +1018,7 @@
 			}
 			/* Group theme colors */
 			if(btheme->tv3d.group[3]==0) {
-				SETCOL(btheme->tv3d.group, 0x10, 0x40, 0x10, 255);
+				SETCOL(btheme->tv3d.group, 0x0C, 0x30, 0x0C, 255);
 				SETCOL(btheme->tv3d.group_active, 0x66, 0xFF, 0x66, 255);
 			}
 			/* Sequence editor theme*/





More information about the Bf-blender-cvs mailing list