From 3957b3428eebe55ae9d18ffbaa44e708ae680f76 Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Fri, 28 Oct 2005 15:45:32 +0000 Subject: [PATCH] Hm, last method was not so good across various colour themes. Now the line uses a blend of the outliner theme colours instead of being hard coded. --- source/blender/src/outliner.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/src/outliner.c b/source/blender/src/outliner.c index 807b976c8c8..76ab56fb574 100644 --- a/source/blender/src/outliner.c +++ b/source/blender/src/outliner.c @@ -2365,6 +2365,7 @@ static void outliner_draw_tree(SpaceOops *soops) // grey hierarchy lines glColor3ub(110,110,110); + BIF_ThemeColorBlend(TH_BACK, TH_TEXT, 0.5); starty= soops->v2d.tot.ymax-OL_H/2; startx= 6; outliner_draw_hierarchy(soops, &soops->tree, startx, &starty);