verbose cursor should use primary clock mode even when showing a duration, not just absolute position

This commit is contained in:
Paul Davis
2014-07-09 18:32:41 -04:00
parent 8eeb02fe75
commit a2294aa0ff

View File

@@ -156,13 +156,7 @@ VerboseCursor::set_duration (framepos_t start, framepos_t end)
return;
}
AudioClock::Mode m;
if (Profile->get_sae() || Profile->get_small_screen() || Profile->get_trx()) {
m = ARDOUR_UI::instance()->primary_clock->mode ();
} else {
m = ARDOUR_UI::instance()->secondary_clock->mode ();
}
AudioClock::Mode m = ARDOUR_UI::instance()->primary_clock->mode ();
switch (m) {
case AudioClock::BBT: