summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gtk2_ardour/rc_option_editor.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc
index c843276683..240b094474 100644
--- a/gtk2_ardour/rc_option_editor.cc
+++ b/gtk2_ardour/rc_option_editor.cc
@@ -1540,6 +1540,14 @@ RCOptionEditor::RCOptionEditor ()
/* EDITOR */
+ add_option (S_("Editor"),
+ new BoolOption (
+ "draggable-playhead",
+ _("Allow dragging of playhead"),
+ sigc::mem_fun (*ARDOUR_UI::config(), &UIConfiguration::get_draggable_playhead),
+ sigc::mem_fun (*ARDOUR_UI::config(), &UIConfiguration::set_draggable_playhead)
+ ));
+
add_option (_("Editor"),
new BoolOption (
"link-region-and-track-selection",
@@ -2142,14 +2150,6 @@ RCOptionEditor::RCOptionEditor ()
add_option (S_("Preferences|GUI"),
new BoolOption (
- "draggable-playhead",
- _("Allow dragging of playhead"),
- sigc::mem_fun (*ARDOUR_UI::config(), &UIConfiguration::get_draggable_playhead),
- sigc::mem_fun (*ARDOUR_UI::config(), &UIConfiguration::set_draggable_playhead)
- ));
-
- add_option (S_("Preferences|GUI"),
- new BoolOption (
"widget-prelight",
_("Graphically indicate mouse pointer hovering over various widgets"),
sigc::mem_fun (*_rc_config, &RCConfiguration::get_widget_prelight),