From 2a7bd996cde8d89fb170886794e5ceea30e5ac92 Mon Sep 17 00:00:00 2001 From: Damien Zammit Date: Tue, 5 Jul 2016 18:19:00 +1000 Subject: [PATCH] a-comp: Fix inline comp curve shading --- libs/plugins/a-comp.lv2/a-comp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/plugins/a-comp.lv2/a-comp.c b/libs/plugins/a-comp.lv2/a-comp.c index 77895410f2..62d2a1d312 100644 --- a/libs/plugins/a-comp.lv2/a-comp.c +++ b/libs/plugins/a-comp.lv2/a-comp.c @@ -626,7 +626,7 @@ render_inline (LV2_Handle instance, uint32_t w, uint32_t max_h) // maybe cut off at x-position? const float x = w * (self->v_lvl_in + 60) / 60.f; const float y = h * (self->v_lvl_out + 60) / 60.f; - cairo_rectangle (cr, 0, h - y, x, y); + cairo_rectangle (cr, 0, h - x, y, h); if (self->v_ratio > 1.0) { cairo_set_source (cr, pat); } else {