[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [38184] trunk/blender/source/blender/ editors/space_outliner/outliner.c: Tiny tweak: hierarchy lines in outliner were nearly invisible.

Ton Roosendaal ton at blender.org
Thu Jul 7 11:56:06 CEST 2011


Revision: 38184
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=38184
Author:   ton
Date:     2011-07-07 09:56:06 +0000 (Thu, 07 Jul 2011)
Log Message:
-----------
Tiny tweak: hierarchy lines in outliner were nearly invisible. Color is
blend between backdrop and text color (black), made it blend 0.4 instead
of 0.2

Modified Paths:
--------------
    trunk/blender/source/blender/editors/space_outliner/outliner.c

Modified: trunk/blender/source/blender/editors/space_outliner/outliner.c
===================================================================
--- trunk/blender/source/blender/editors/space_outliner/outliner.c	2011-07-07 09:25:08 UTC (rev 38183)
+++ trunk/blender/source/blender/editors/space_outliner/outliner.c	2011-07-07 09:56:06 UTC (rev 38184)
@@ -4906,7 +4906,7 @@
 	outliner_draw_selection(ar, soops, &soops->tree, &starty);
 	
 	// grey hierarchy lines
-	UI_ThemeColorBlend(TH_BACK, TH_TEXT, 0.2f);
+	UI_ThemeColorBlend(TH_BACK, TH_TEXT, 0.4f);
 	starty= (int)ar->v2d.tot.ymax-UI_UNIT_Y/2-OL_Y_OFFSET;
 	startx= 6;
 	outliner_draw_hierarchy(soops, &soops->tree, startx, &starty);




More information about the Bf-blender-cvs mailing list