13
0

change text for a couple of UI config options

This commit is contained in:
Paul Davis 2020-03-25 16:10:27 -06:00
parent 5d1b75bd4f
commit 0622d69196

View File

@ -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)
);