mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
Add preference to disable implicit grouping
This commit is contained in:
parent
faebc7ab35
commit
a94dba4ef4
2 changed files with 2 additions and 1 deletions
|
|
@ -203,6 +203,7 @@ CONFIG_VARIABLE (std::string, auditioner_output_right, "auditioner-output-right"
|
|||
CONFIG_VARIABLE (bool, replicate_missing_region_channels, "replicate-missing-region-channels", true)
|
||||
CONFIG_VARIABLE (bool, hiding_groups_deactivates_groups, "deprecated-hiding-groups-deactivates-groups", false) /*deprecated*/
|
||||
CONFIG_VARIABLE (bool, group_override_inverts, "group-override-inverts", true)
|
||||
CONFIG_VARIABLE (bool, implicit_selection_op_groups, "implicit-selection-op-groups", true)
|
||||
CONFIG_VARIABLE (bool, verify_remove_last_capture, "verify-remove-last-capture", true)
|
||||
CONFIG_VARIABLE (bool, save_history, "save-history", true)
|
||||
CONFIG_VARIABLE (int32_t, saved_history_depth, "save-history-depth", 20)
|
||||
|
|
|
|||
|
|
@ -654,7 +654,7 @@ CoreSelection::get_stripables_for_op (StripableList& sl, std::shared_ptr<Stripab
|
|||
|
||||
} else {
|
||||
|
||||
if (target->is_selected()) {
|
||||
if (target->is_selected() && Config->get_implicit_selection_op_groups ()) {
|
||||
|
||||
/* Use full selection */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue