Skip to content

Commit

Permalink
Clear solo flag on copied tracks
Browse files Browse the repository at this point in the history
  • Loading branch information
liuycsd committed Feb 17, 2024
1 parent d4b3cc2 commit 67f22fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OpenUtau/ViewModels/TrackHeaderViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ public void Duplicate() {
RendererSettings = track.RendererSettings,
Mute = track.Mute,
Muted = track.Muted,
Solo = track.Solo,
Solo = false,
Volume = track.Volume,
Pan = track.Pan,
TrackColor = track.TrackColor
Expand All @@ -456,7 +456,7 @@ public void DuplicateSettings() {
RendererSettings = track.RendererSettings,
Mute = track.Mute,
Muted = track.Muted,
Solo = track.Solo,
Solo = false,
Volume = track.Volume,
Pan = track.Pan,
TrackColor = track.TrackColor
Expand Down

0 comments on commit 67f22fd

Please sign in to comment.