summaryrefslogtreecommitdiff
path: root/desktop/plot_style.c
diff options
context:
space:
mode:
authorRob Kendrick <rjek@netsurf-browser.org>2010-12-05 17:03:37 +0000
committerRob Kendrick <rjek@netsurf-browser.org>2010-12-05 17:03:37 +0000
commit35daa32e80713e0162bc296d56ec846ae0342ffd (patch)
tree05ee63d2807501796265b3b2437d5d294fbc9b73 /desktop/plot_style.c
parentbd39b8f0d7671dc66feec0a714a916de61f31ee3 (diff)
downloadnetsurf-35daa32e80713e0162bc296d56ec846ae0342ffd.tar.gz
netsurf-35daa32e80713e0162bc296d56ec846ae0342ffd.tar.bz2
Change styles used for plotting local history to make it more obvious what the current page is, along with other minor improvements.
svn path=/trunk/netsurf/; revision=11008
Diffstat (limited to 'desktop/plot_style.c')
-rw-r--r--desktop/plot_style.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/desktop/plot_style.c b/desktop/plot_style.c
index 94e52ca00..504609e65 100644
--- a/desktop/plot_style.c
+++ b/desktop/plot_style.c
@@ -134,13 +134,14 @@ plot_style_t *plot_style_stroke_lightwbasec = &plot_style_stroke_lightwbasec_sta
static plot_style_t plot_style_stroke_history_static = {
.stroke_type = PLOT_OP_TYPE_SOLID,
.stroke_colour = 0x333333,
+ .stroke_width = 2,
};
plot_style_t *plot_style_stroke_history = &plot_style_stroke_history_static;
/* Generic font style */
static const plot_font_style_t plot_style_font_static = {
.family = PLOT_FONT_FAMILY_SANS_SERIF,
- .size = 10 * FONT_SIZE_SCALE,
+ .size = 8 * FONT_SIZE_SCALE,
.weight = 400,
.flags = FONTF_NONE,
.background = 0xffffff,