summaryrefslogtreecommitdiff
path: root/gtk2_ardour/rc_option_editor.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/rc_option_editor.cc')
-rw-r--r--gtk2_ardour/rc_option_editor.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc
index c59c3c949e..978cea87cc 100644
--- a/gtk2_ardour/rc_option_editor.cc
+++ b/gtk2_ardour/rc_option_editor.cc
@@ -1152,10 +1152,10 @@ RCOptionEditor::RCOptionEditor ()
_("Specify the Peak Volume of the generated LTC signal in dbFS. A good value is 0dBu ^= -18dbFS in an EBU calibrated system"));
add_option (_("Transport"), _ltc_volume_slider);
+ parameter_changed ("send-ltc");
#endif
parameter_changed ("sync-source");
- parameter_changed ("send-ltc");
/* EDITOR */
@@ -1795,6 +1795,10 @@ RCOptionEditor::parameter_changed (string const & p)
_solo_control_is_listen_control->set_sensitive (s);
_listen_position->set_sensitive (s);
} else if (p == "sync-source") {
+ _sync_source->set_sensitive (true);
+ if (_session) {
+ _sync_source->set_sensitive (_session->config.get_external_sync());
+ }
switch(Config->get_sync_source()) {
case ARDOUR::MTC:
case ARDOUR::LTC: