summaryrefslogtreecommitdiff
path: root/libs/plugins/a-exp.lv2
diff options
context:
space:
mode:
authorJohannes Mueller <github@johannes-mueller.org>2017-08-07 14:58:59 +0200
committerJohannes Mueller <github@johannes-mueller.org>2018-05-12 19:49:18 +0200
commit9a9df5a10bd699807b0527494b8e74286fd6dcd8 (patch)
tree229e4d76c1369695e932790004a6d0e76673d643 /libs/plugins/a-exp.lv2
parent46aa204eb8e7d322ab16a6bb41e9abafa27cd38e (diff)
Make the peak indication in the graph of a-expander green ...
... so that it has a different color than the expander curve
Diffstat (limited to 'libs/plugins/a-exp.lv2')
-rw-r--r--libs/plugins/a-exp.lv2/a-exp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/plugins/a-exp.lv2/a-exp.c b/libs/plugins/a-exp.lv2/a-exp.c
index 0b11f2ae48..7365386567 100644
--- a/libs/plugins/a-exp.lv2/a-exp.c
+++ b/libs/plugins/a-exp.lv2/a-exp.c
@@ -787,7 +787,7 @@ render_inline_full (cairo_t* cr, const AExp* self)
cairo_fill (cr);
// draw peak input
- cairo_set_source_rgba (cr, .9f, .9f, .9f, 1.0);
+ cairo_set_source_rgba (cr, .0f, 1.f, 0.f, 1.0);
cairo_set_line_width(cr, 1.0);
const float peak_x = w * (1.f - (10.f-self->v_peakdb)/70.f);