From 5e4d2afbe87e79b6a8c63f2de05be269f343b44e Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 25 Oct 2012 17:34:00 +0000 Subject: [PATCH] don't both with LTC parameter changes if HAVE_LTC is not set git-svn-id: svn://localhost/ardour2/branches/3.0@13339 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/rc_option_editor.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc index b65f4b3822..7ff6d3809f 100644 --- a/gtk2_ardour/rc_option_editor.cc +++ b/gtk2_ardour/rc_option_editor.cc @@ -1786,10 +1786,12 @@ RCOptionEditor::parameter_changed (string const & p) _sync_framerate->set_sensitive (false); break; } +#ifdef HAVE_LTC } else if (p == "send-ltc") { bool const s = Config->get_send_ltc (); _ltc_send_continuously->set_sensitive (s); _ltc_volume_slider->set_sensitive (s); +#endif /*HAVE_LTC*/ } }