mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
end of selected tracks list is the most recently selected
This commit is contained in:
parent
08bca2a07d
commit
5ba85b0850
1 changed files with 4 additions and 1 deletions
|
|
@ -962,7 +962,10 @@ Editor::track_selection_changed ()
|
|||
case 0:
|
||||
break;
|
||||
default:
|
||||
set_selected_mixer_strip (*(selection->tracks.front()));
|
||||
/* last element in selection list is the most recently
|
||||
* selected, because we always append to that list.
|
||||
*/
|
||||
set_selected_mixer_strip (*(selection->tracks.back()));
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue