Use gui_system_colours.

svn path=/trunk/netsurf/; revision=13741
This commit is contained in:
Michael Drake 2012-03-27 11:53:53 +00:00
parent 57793aae89
commit fba2ebeee6
1 changed files with 3 additions and 3 deletions

View File

@ -190,9 +190,9 @@ bool scrollbar_redraw(struct scrollbar *s, int x, int y,
int v[6]; /* array of triangle vertices */
int x0, y0, x1, y1;
colour bg_fill_colour = nsoption_colour(sys_colour_Scrollbar);
colour fg_fill_colour = nsoption_colour(sys_colour_ButtonFace);
colour arrow_fill_colour = nsoption_colour(sys_colour_ButtonText);
colour bg_fill_colour = gui_system_colour_char("Scrollbar");
colour fg_fill_colour = gui_system_colour_char("ButtonFace");
colour arrow_fill_colour = gui_system_colour_char("ButtonText");
plot_style_t bg_fill_style = {
.fill_type = PLOT_OP_TYPE_SOLID,