13
0

Tempo ramps - ensure displayed grid extends beyond the leftmost frame.

This commit is contained in:
nick_m 2016-05-19 01:26:02 +10:00
parent 2d3d7a5355
commit cfbc42cd3a

View File

@ -258,7 +258,7 @@ Editor::compute_current_bbt_points (std::vector<TempoMap::BBTPoint>& grid, frame
/* prevent negative values of leftmost from creeping into tempomap
*/
const double lower_beat = floor (_session->tempo_map().beat_at_frame (leftmost));
const double lower_beat = floor (_session->tempo_map().beat_at_frame (leftmost)) - 1.0;
_session->tempo_map().get_grid (grid, max (_session->tempo_map().frame_at_beat (lower_beat), (framepos_t) 0), rightmost);
}