From ff9bd6540cfe726006ea7bc3028ad7167fdb8b1c Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sun, 12 Dec 2010 12:14:03 +0000 Subject: Clearer font styles. svn path=/trunk/netsurf/; revision=11032 --- desktop/tree.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'desktop/tree.c') diff --git a/desktop/tree.c b/desktop/tree.c index 8658b36c5..924fc1f66 100644 --- a/desktop/tree.c +++ b/desktop/tree.c @@ -49,20 +49,20 @@ static plot_font_style_t plot_fstyle = { .family = PLOT_FONT_FAMILY_SANS_SERIF, - .size = 10240, + .size = 10 * FONT_SIZE_SCALE, /* 10pt. */ .weight = 400, .flags = FONTF_NONE, - .background = 0xFFFFFF, - .foreground = 0x000000 + .background = 0xFFFFFF, /* white */ + .foreground = 0x000000 /* black */ }; static plot_font_style_t plot_fstyle_selected = { .family = PLOT_FONT_FAMILY_SANS_SERIF, - .size = 10240, + .size = 10 * FONT_SIZE_SCALE, /* 10pt. */ .weight = 400, .flags = FONTF_NONE, - .background = 0x000000, - .foreground = 0xEEEEEE + .background = 0x000000, /* black */ + .foreground = 0xEEEEEE /* nearly white */ }; struct node; -- cgit v1.2.3