13
0

Fix MCP time display sometimes doesn't update to zero time on return to zero (shift-rew)

This commit is contained in:
Len Ovens 2015-12-16 12:24:10 -08:00
parent 2f86d1b7dd
commit 8bb4ac0ac7

View File

@ -1318,6 +1318,9 @@ MackieControlProtocol::notify_transport_state_changed()
update_global_button (Button::Rewind, session->transport_speed() < 0.0);
update_global_button (Button::Ffwd, session->transport_speed() > 1.0);
// sometimes a return to start leaves time code at old time
_timecode_last = string (10, ' ');
notify_metering_state_changed ();
}