Skip to content

Commit

Permalink
allow subsequent scores to have less parts/staves
Browse files Browse the repository at this point in the history
than the first when joining via album
  • Loading branch information
Jojo-Schmitz committed Dec 30, 2014
1 parent 38ceee4 commit a6735b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmscore/score.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2082,7 +2082,7 @@ void Score::removeAudio()

bool Score::appendScore(Score* score)
{
if (parts().size() != score->parts().size() || staves().size() != score->staves().size())
if (parts().size() < score->parts().size() || staves().size() < score->staves().size())
return false;
TieMap tieMap;

Expand Down

0 comments on commit a6735b7

Please sign in to comment.