mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 07:45:00 +01:00
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:
parent
c6d5b2ce6d
commit
eed0201c07
1 changed files with 1 additions and 1 deletions
|
|
@ -215,7 +215,7 @@ TempoLines::draw (const ARDOUR::TempoMap::BBTPointList::const_iterator& begin,
|
||||||
line->set_x0 (xpos);
|
line->set_x0 (xpos);
|
||||||
line->set_x1 (xpos);
|
line->set_x1 (xpos);
|
||||||
line->set_y0 (0.0);
|
line->set_y0 (0.0);
|
||||||
line->set_y1 (_height);
|
line->set_y1 (ArdourCanvas::COORD_MAX);
|
||||||
line->set_outline_color (color);
|
line->set_outline_color (color);
|
||||||
_lines.insert(make_pair(xpos, line));
|
_lines.insert(make_pair(xpos, line));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue