13
0

Measure line tweaks

git-svn-id: svn://localhost/ardour2/branches/midi@907 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2006-09-06 16:26:04 +00:00
parent bd1220a46d
commit c7307c09b8

View File

@ -190,10 +190,15 @@ Editor::draw_measures ()
last_beat = xpos;
}
}
if (beat_spacing < 3.0) {
/* if the lines are too close together, they become useless */
return;
}
double x1, x2, y1, y2;
track_canvas.get_scroll_region (x1, y1, x2, y2);
//y2 = 1000000000.0f;
y2 = 1000000000.0f;
for (i = current_bbt_points->begin(); i != current_bbt_points->end(); ++i) {
@ -215,7 +220,7 @@ Editor::draw_measures ()
are large.
*/
if (beat_spacing < 15.0) {
if (beat_spacing < 4.0) {
break;
}
}