summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_time_axis.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/route_time_axis.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/route_time_axis.cc')
-rw-r--r--gtk2_ardour/route_time_axis.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/route_time_axis.cc b/gtk2_ardour/route_time_axis.cc
index 357ee29a91..274553f6b4 100644
--- a/gtk2_ardour/route_time_axis.cc
+++ b/gtk2_ardour/route_time_axis.cc
@@ -1256,7 +1256,7 @@ RouteTimeAxisView::selection_click (GdkEventButton* ev)
if (_editor.get_selection().selected (this)) {
_editor.get_selection().clear_tracks ();
} else {
- _editor.select_all_tracks ();
+ _editor.select_all_visible_lanes ();
}
_editor.commit_reversible_selection_op ();