summaryrefslogtreecommitdiff
path: root/gtk2_ardour/rc_option_editor.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2020-03-25 16:10:27 -0600
committerPaul Davis <paul@linuxaudiosystems.com>2020-03-25 16:10:27 -0600
commit0622d69196d2f8c066db7b6c53eb328cebcfc547 (patch)
tree6eb727441fdbb916bb8f5e59597bfb04cfc736b9 /gtk2_ardour/rc_option_editor.cc
parent5d1b75bd4faa96badd94863525b10777c9664d97 (diff)
change text for a couple of UI config options
Diffstat (limited to 'gtk2_ardour/rc_option_editor.cc')
-rw-r--r--gtk2_ardour/rc_option_editor.cc4
1 files 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<float>* dps = new ComboOption<float> (
"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)
);