From 0622d69196d2f8c066db7b6c53eb328cebcfc547 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 25 Mar 2020 16:10:27 -0600 Subject: [PATCH] change text for a couple of UI config options --- gtk2_ardour/rc_option_editor.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) );