From 4f7d3069abdf4feb7e7c5df9bf155ec591b4b3c6 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 4 Jul 2016 22:14:00 +0200 Subject: highlight area below automation lanes --- gtk2_ardour/automation_line.cc | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'gtk2_ardour/automation_line.cc') diff --git a/gtk2_ardour/automation_line.cc b/gtk2_ardour/automation_line.cc index 5d3f0782e8..eb53ebce17 100644 --- a/gtk2_ardour/automation_line.cc +++ b/gtk2_ardour/automation_line.cc @@ -86,6 +86,7 @@ AutomationLine::AutomationLine (const string& name, , _parent_group (parent) , _offset (0) , _maximum_time (max_framepos) + , _fill (false) , _desc (desc) { if (converter) { @@ -229,6 +230,11 @@ AutomationLine::set_height (guint32 h) (*i)->set_size (bsz); } + if (_fill) { + line->set_fill_y1 (_height); + } else { + line->set_fill_y1 (0); + } reset (); } } @@ -238,6 +244,7 @@ AutomationLine::set_line_color (uint32_t color) { _line_color = color; line->set_outline_color (color); + line->set_fill_color ((color & 0xffff00) + 80); // XXX TODO configurable transparency } void -- cgit v1.2.3