Fix duplication of solo state when cloning tracks (#7391)

This commit is contained in:
szeli1
2024-08-05 13:16:03 +02:00
committed by GitHub
parent 5b366cfe3c
commit c16616cca4

View File

@@ -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();
}
}