Fix duplication of solo state when cloning tracks (#7391)
This commit is contained in:
@@ -236,6 +236,12 @@ void TrackOperationsWidget::cloneTrack()
|
||||
tcView->moveTrackView( newTrackView, i - 1 );
|
||||
i--;
|
||||
}
|
||||
|
||||
if (m_soloBtn->model()->value())
|
||||
{
|
||||
// if this track was solo, make the new track the new solo
|
||||
newTrack->toggleSolo();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user