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
This commit is contained in:
Ton Roosendaal 2011-07-07 09:56:06 +00:00
parent 5b4bffba52
commit ccc56a6570

@ -4906,7 +4906,7 @@ static void outliner_draw_tree(bContext *C, uiBlock *block, Scene *scene, ARegio
outliner_draw_selection(ar, soops, &soops->tree, &starty); outliner_draw_selection(ar, soops, &soops->tree, &starty);
// grey hierarchy lines // 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; starty= (int)ar->v2d.tot.ymax-UI_UNIT_Y/2-OL_Y_OFFSET;
startx= 6; startx= 6;
outliner_draw_hierarchy(soops, &soops->tree, startx, &starty); outliner_draw_hierarchy(soops, &soops->tree, startx, &starty);