diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc index c90234d631..469e9fd0a3 100644 --- a/gtk2_ardour/rc_option_editor.cc +++ b/gtk2_ardour/rc_option_editor.cc @@ -2312,14 +2312,14 @@ RCOptionEditor::RCOptionEditor () add_option (_("Editor"), new BoolOption ( "draggable-playhead", - _("Allow dragging of playhead"), + _("Enable playhead dragging"), sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::get_draggable_playhead), sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::set_draggable_playhead) )); ComboOption* dps = new ComboOption ( "draggable-playhead-speed", - _("Playhead dragging speed (%)"), + _("Auto-scroll speed when dragging playhead (%)"), sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::get_draggable_playhead_speed), sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::set_draggable_playhead_speed) );