13
0

Use MTC instead of MIDI Timecode as the string for the external sync button. Fixes #3621.

git-svn-id: svn://localhost/ardour2/branches/3.0@8332 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2010-12-23 00:26:54 +00:00
parent eb0faf3ec3
commit 4336bb25d7
3 changed files with 10 additions and 5 deletions

View File

@ -331,7 +331,7 @@ ARDOUR_UI::parameter_changed (std::string p)
ActionManager::get_action ("Transport", "ToggleAutoPlay")->set_sensitive (true);
ActionManager::get_action ("Transport", "ToggleAutoReturn")->set_sensitive (true);
} else {
sync_button.set_label (sync_source_to_string (_session->config.get_sync_source()));
sync_button.set_label (sync_source_to_string (_session->config.get_sync_source(), true));
/* XXX need to make auto-play is off as well as insensitive */
ActionManager::get_action ("Transport", "ToggleAutoPlay")->set_sensitive (false);
ActionManager::get_action ("Transport", "ToggleAutoReturn")->set_sensitive (false);

View File

@ -64,7 +64,7 @@ bool path_is_paired (std::string path, std::string& pair_base);
void compute_equal_power_fades (ARDOUR::framecnt_t nframes, float* in, float* out);
const char* sync_source_to_string (ARDOUR::SyncSource src);
const char* sync_source_to_string (ARDOUR::SyncSource src, bool sh = false);
ARDOUR::SyncSource string_to_sync_source (std::string str);
const char* edit_mode_to_string (ARDOUR::EditMode);

View File

@ -400,7 +400,7 @@ edit_mode_to_string (EditMode mode)
SyncSource
string_to_sync_source (string str)
{
if (str == _("MIDI Timecode")) {
if (str == _("MIDI Timecode") || str == _("MTC")) {
return MTC;
}
@ -417,15 +417,20 @@ string_to_sync_source (string str)
return JACK;
}
/** @param sh Return a short version of the string */
const char*
sync_source_to_string (SyncSource src)
sync_source_to_string (SyncSource src, bool sh)
{
switch (src) {
case JACK:
return _("JACK");
case MTC:
return _("MIDI Timecode");
if (sh) {
return _("MTC");
} else {
return _("MIDI Timecode");
}
case MIDIClock:
return _("MIDI Clock");