summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2010-12-12 12:14:03 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2010-12-12 12:14:03 +0000
commitff9bd6540cfe726006ea7bc3028ad7167fdb8b1c (patch)
tree0dbf3d7b555d9f7a03af4b4df5652795df4a6e42
parente3073b6623e2f28f260d22a9cc8a0a1206e648b6 (diff)
downloadnetsurf-ff9bd6540cfe726006ea7bc3028ad7167fdb8b1c.tar.gz
netsurf-ff9bd6540cfe726006ea7bc3028ad7167fdb8b1c.tar.bz2
Clearer font styles.
svn path=/trunk/netsurf/; revision=11032
-rw-r--r--desktop/tree.c12
1 files changed, 6 insertions, 6 deletions
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;