Skip to content

Commit

Permalink
Manually merged #6469 to master
Browse files Browse the repository at this point in the history
  • Loading branch information
anatoly-os committed Aug 26, 2020
1 parent 8fa7dc6 commit a5e886d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions audio/midi/event.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,9 @@ bool NPlayEvent::isMuted() const
const Harmony* h = harmony();
if (h) {
const Channel* hCh = h->part()->harmonyChannel();
if (hCh) { //if there is a harmony channel
return hCh->mute() || hCh->soloMute();
if (hCh) { //if there is a harmony channel
const Channel* pCh = h->masterScore()->playbackChannel(hCh);
return pCh->mute() || pCh->soloMute();
}
}

Expand Down

0 comments on commit a5e886d

Please sign in to comment.