use new selection API to avoid double signal when a track or tracks are SET as the selection
This commit is contained in:
parent
fbe236999d
commit
22a14a56f3
@ -790,7 +790,7 @@ void
|
||||
Selection::set (TimeAxisView* track)
|
||||
{
|
||||
clear_objects (); //enforce object/range exclusivity
|
||||
clear_tracks ();
|
||||
clear_tracks (false);
|
||||
add (track);
|
||||
}
|
||||
|
||||
@ -798,7 +798,7 @@ void
|
||||
Selection::set (const TrackViewList& track_list)
|
||||
{
|
||||
clear_objects(); //enforce object/range exclusivity
|
||||
clear_tracks ();
|
||||
clear_tracks (false);
|
||||
add (track_list);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user