From 142ce953dad2899e446147f73e07f3732db0dbc2 Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Wed, 22 Jan 2020 10:30:05 -0600 Subject: 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. --- gtk2_ardour/editor_keys.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gtk2_ardour/editor_keys.cc') 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); -- cgit v1.2.3