From 30d2d7824ef116ba769b0a41632db23714319703 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 2 Aug 2023 14:09:28 -0600 Subject: [PATCH] selection-as-group is not an option --- gtk2_ardour/rc_option_editor.cc | 17 ----------------- gtk2_ardour/ui_config_vars.h | 5 ----- 2 files changed, 22 deletions(-) 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