From b146e45df54ddbc6b7036140fc2cae62b1b43f88 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 20 Feb 2021 18:37:56 -0700 Subject: [PATCH] make sure that the 1/64ths grid case is covered --- gtk2_ardour/editor_tempodisplay.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/gtk2_ardour/editor_tempodisplay.cc b/gtk2_ardour/editor_tempodisplay.cc index d8103fbf2b..eb7eb4ba66 100644 --- a/gtk2_ardour/editor_tempodisplay.cc +++ b/gtk2_ardour/editor_tempodisplay.cc @@ -337,6 +337,7 @@ Editor::compute_current_bbt_points (std::vector& grid, sampl case bbt_show_eighths: case bbt_show_sixteenths: case bbt_show_thirtyseconds: + case bbt_show_sixtyfourths: _session->tempo_map().get_grid (grid, max (_session->tempo_map().sample_at_beat (lower_beat), (samplepos_t) 0), rightmost); break;