mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 13:45:43 +01:00
fix for crash caused as slave is switching from non-TC source to TC-source
git-svn-id: svn://localhost/ardour2/branches/3.0@13453 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
7253e8ff84
commit
c214f1630a
1 changed files with 5 additions and 7 deletions
|
|
@ -1044,14 +1044,12 @@ AudioClock::set_slave_info ()
|
|||
TimecodeSlave* tcslave;
|
||||
if ((tcslave = dynamic_cast<TimecodeSlave*>(_session->slave())) != 0) {
|
||||
matching = (tcslave->apparent_timecode_format() == _session->config.get_timecode_format());
|
||||
} else {
|
||||
matching = true;
|
||||
_left_layout->set_markup (string_compose ("<span size=\"%1\" foreground=\"%2\">%3</span>",
|
||||
INFO_FONT_SIZE, (matching?X_("green"):X_("red")),
|
||||
dynamic_cast<TimecodeSlave*>(slave)->approximate_current_position()));
|
||||
_right_layout->set_markup (string_compose ("<span size=\"%1\" foreground=\"white\">%2</span>",
|
||||
INFO_FONT_SIZE, slave->approximate_current_delta()));
|
||||
}
|
||||
_left_layout->set_markup (string_compose ("<span size=\"%1\" foreground=\"%2\">%3</span>",
|
||||
INFO_FONT_SIZE, (matching?"green":"red"),
|
||||
dynamic_cast<TimecodeSlave*>(slave)->approximate_current_position()));
|
||||
_right_layout->set_markup (string_compose ("<span size=\"%1\" foreground=\"white\">%2</span>",
|
||||
INFO_FONT_SIZE, slave->approximate_current_delta()));
|
||||
} else {
|
||||
_left_layout->set_markup (string_compose ("<span size=\"%1\" foreground=\"white\">%2</span>",
|
||||
INFO_FONT_SIZE, _("--pending--")));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue