fix bug with tempo lines not extending far enough in the y-axis - since this is the cairo canvas now, just extend them to COORD_MAX .. yay!

This commit is contained in:
Paul Davis 2013-04-16 22:22:45 -04:00
parent c6d5b2ce6d
commit eed0201c07

View file

@ -215,7 +215,7 @@ TempoLines::draw (const ARDOUR::TempoMap::BBTPointList::const_iterator& begin,
line->set_x0 (xpos);
line->set_x1 (xpos);
line->set_y0 (0.0);
line->set_y1 (_height);
line->set_y1 (ArdourCanvas::COORD_MAX);
line->set_outline_color (color);
_lines.insert(make_pair(xpos, line));
}