summaryrefslogtreecommitdiff
path: root/desktop/plot_style.c
diff options
context:
space:
mode:
authorSven Weidauer <sven.weidauer@gmail.com>2011-01-24 13:32:35 +0000
committerSven Weidauer <sven.weidauer@gmail.com>2011-01-24 13:32:35 +0000
commit840fb0b9aab4b3d3bd4603a945f0d8ca02f5e473 (patch)
treea13540d69e0dffa1d0eb38024947b37dedf30f31 /desktop/plot_style.c
parent8cc6b55981e808576d32c37f374716015fafe55b (diff)
downloadnetsurf-840fb0b9aab4b3d3bd4603a945f0d8ca02f5e473.tar.gz
netsurf-840fb0b9aab4b3d3bd4603a945f0d8ca02f5e473.tar.bz2
History colours as constants r=jmb,vince
svn path=/trunk/netsurf/; revision=11478
Diffstat (limited to 'desktop/plot_style.c')
-rw-r--r--desktop/plot_style.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/plot_style.c b/desktop/plot_style.c
index 452075d91..04d2885ff 100644
--- a/desktop/plot_style.c
+++ b/desktop/plot_style.c
@@ -133,7 +133,7 @@ plot_style_t *plot_style_stroke_lightwbasec = &plot_style_stroke_lightwbasec_sta
/** stroke style for history core. */
static plot_style_t plot_style_stroke_history_static = {
.stroke_type = PLOT_OP_TYPE_SOLID,
- .stroke_colour = 0x333333,
+ .stroke_colour = HISTORY_COLOUR_LINES,
.stroke_width = 2,
};
plot_style_t *plot_style_stroke_history = &plot_style_stroke_history_static;