summaryrefslogtreecommitdiff
path: root/gtk2_ardour/rc_option_editor.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2012-10-24 00:51:15 +0000
committerRobin Gareus <robin@gareus.org>2012-10-24 00:51:15 +0000
commitead6e3ade91a35425cddf24ddf528c02f2e1aa97 (patch)
tree37abfec6fb055c8ad6d7ef16e0da533a57fd0a72 /gtk2_ardour/rc_option_editor.cc
parent3d4bbcd65cfc14cecef42065a25e5143e179c501 (diff)
more LTC config message tweaks
git-svn-id: svn://localhost/ardour2/branches/3.0@13330 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/rc_option_editor.cc')
-rw-r--r--gtk2_ardour/rc_option_editor.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc
index 5b022bdc89..b65f4b3822 100644
--- a/gtk2_ardour/rc_option_editor.cc
+++ b/gtk2_ardour/rc_option_editor.cc
@@ -1119,17 +1119,17 @@ RCOptionEditor::RCOptionEditor ()
);
Gtkmm2ext::UI::instance()->set_tip
(_ltc_send_continuously->tip_widget(),
- _("When enabled, Ardour will continue to send LTC information even when the transport (playhead) is not moving."));
+ _("<b>When enabled</b> Ardour will continue to send LTC information even when the transport (playhead) is not moving"));
add_option (_("Transport"), _ltc_send_continuously);
- _ltc_volume_adjustment = new Gtk::Adjustment(-18, -50, 0, .5, 3);
+ _ltc_volume_adjustment = new Gtk::Adjustment(-18, -50, 0, .5, 5);
_ltc_volume_adjustment->set_value (20 * log10(_rc_config->get_ltc_output_volume()));
_ltc_volume_adjustment->signal_value_changed().connect (sigc::mem_fun (*this, &RCOptionEditor::ltc_generator_volume_changed));
_ltc_volume_slider = new HSliderOption("ltcvol", ("LTC generator level:"), *_ltc_volume_adjustment);
Gtkmm2ext::UI::instance()->set_tip
(_ltc_volume_slider->tip_widget(),
- _("Specify the Peak Volume of the generated LTC signal in dbFS. A good value is 0dBu ^= -18dbFS in an EBU calibrated system."));
+ _("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);
#endif