summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_keys.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2020-01-22 10:30:05 -0600
committerBen Loftis <ben@harrisonconsoles.com>2020-01-22 10:33:15 -0600
commit142ce953dad2899e446147f73e07f3732db0dbc2 (patch)
tree172bad6f0ed3042f0f8bfbe4bf61eabbd8d541a4 /gtk2_ardour/editor_keys.cc
parent61e7f3176bfd8e423f72fc3f7d56d00ac930b796 (diff)
Split Select-All-Tracks into 2 appropriately named actions
Existing function select-all-tracks is now renamed select-all-visible-lanes, to match its behavior. New function select-all-tracks will select all Tracks, as the name implies. To maintain consistency for those users who actively used select-all-tracks, the default shortcut ctrl+t will continue calling select-all-visible-lanes.
Diffstat (limited to 'gtk2_ardour/editor_keys.cc')
-rw-r--r--gtk2_ardour/editor_keys.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/editor_keys.cc b/gtk2_ardour/editor_keys.cc
index c4d9a173ea..9e86c615cc 100644
--- a/gtk2_ardour/editor_keys.cc
+++ b/gtk2_ardour/editor_keys.cc
@@ -58,7 +58,7 @@ Editor::keyboard_selection_finish (bool /*add*/, Editing::EditIgnoreOption ign)
//if no tracks are selected and we're working from the keyboard, enable all tracks (_something_ has to be selected for any range selection)
if ( (_edit_point == EditAtPlayhead) && selection->tracks.empty() )
- select_all_tracks();
+ select_all_visible_lanes();
selection->set (start.sample, end);
@@ -95,7 +95,7 @@ Editor::keyboard_selection_begin (Editing::EditIgnoreOption ign)
//if no tracks are selected and we're working from the keyboard, enable all tracks (_something_ has to be selected for any range selection)
if ( selection->tracks.empty() )
- select_all_tracks();
+ select_all_visible_lanes();
selection->set (start.sample, end.sample);