diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc
index b81107b9e7..7e304a4a8c 100644
--- a/gtk2_ardour/rc_option_editor.cc
+++ b/gtk2_ardour/rc_option_editor.cc
@@ -3153,23 +3153,6 @@ These settings will only take effect after %1 is restarted.\n\
/* EDITOR *******************************************************************/
- bo = new BoolOption (
- "allow-selection-as-group",
- _("Allow selection to function as a temporary track/bus group"),
- sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::get_allow_selection_as_group),
- sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::set_allow_selection_as_group)
- );
-
- add_option (_("Editor"), bo);
-
- Gtkmm2ext::UI::instance()->set_tip (bo->tip_widget(),
- _("When enabled, operations like gain control, solo, mute, record-enable etc."
- "will be applied to the current track/bus selection (if the target track is selected).\n\n"
- "This will not occur if the track/bus is a member of a group that already shares the"
- "relevant control.\n\n"
- "When disabled gain control, solo, mute etc. will apply only to the target track"
- "unless it is a member of an active group sharing the relevant control"));
-
add_option (_("Editor"), new OptionEditorHeading (_("Scroll and Zoom Behaviors")));
if (!Profile->get_mixbus()) {
diff --git a/gtk2_ardour/ui_config_vars.h b/gtk2_ardour/ui_config_vars.h
index 009208f7da..72f2093ae2 100644
--- a/gtk2_ardour/ui_config_vars.h
+++ b/gtk2_ardour/ui_config_vars.h
@@ -163,8 +163,3 @@ UI_CONFIG_VARIABLE (Editing::TempoEditBehavior, tempo_edit_behavior, "tempo-edit
/* these are visibility-type selections in the New Track dialog that we should make persistent for the user's choices */
UI_CONFIG_VARIABLE (bool, show_on_cue_page, "show-on-cue-page", true)
UI_CONFIG_VARIABLE (uint32_t, insert_at_position, "insert-at-position", 3)
-#ifdef MIXBUS
-UI_CONFIG_VARIABLE (bool, allow_selection_as_group, "allow-selection-as-group", true)
-#else
-UI_CONFIG_VARIABLE (bool, allow_selection_as_group, "allow-selection-as-group", false)
-#endif