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.
This commit is contained in:
Ben Loftis 2020-01-22 10:30:05 -06:00
parent 61e7f3176b
commit 142ce953da
9 changed files with 25 additions and 5 deletions

View file

@ -291,6 +291,7 @@ public:
virtual void new_playlists (TimeAxisView*) = 0;
virtual void copy_playlists (TimeAxisView*) = 0;
virtual void clear_playlists (TimeAxisView*) = 0;
virtual void select_all_visible_lanes () = 0;
virtual void select_all_tracks () = 0;
virtual void deselect_all () = 0;
virtual void invert_selection () = 0;