From 6b2c581c225cce68e2dacb4e808af79640ce65c1 Mon Sep 17 00:00:00 2001 From: nick_m Date: Thu, 19 Jun 2014 01:52:21 +1000 Subject: Summary changes : * Use correct image format for background image * Construct thr ImageSurface as per cairo docs * Place start/end markers in background image Tempo bars : * adjust beats display threshold to (hopefully) coincide with BBT ruler better. --- gtk2_ardour/tempo_lines.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gtk2_ardour/tempo_lines.cc') diff --git a/gtk2_ardour/tempo_lines.cc b/gtk2_ardour/tempo_lines.cc index ee01da9672..c2f7df1c42 100644 --- a/gtk2_ardour/tempo_lines.cc +++ b/gtk2_ardour/tempo_lines.cc @@ -85,7 +85,7 @@ TempoLines::draw (const ARDOUR::TempoMap::BBTPointList::const_iterator& begin, if ((*i).is_bar()) { color = ARDOUR_UI::config()->get_canvasvar_MeasureLineBar(); } else { - if (beat_density > 2.0) { + if (beat_density > 0.3) { continue; /* only draw beat lines if the gaps between beats are large. */ } color = ARDOUR_UI::config()->get_canvasvar_MeasureLineBeat(); -- cgit v1.2.3