Skip to content

Commit

Permalink
Merge pull request #3599 from rettinghaus/devlop/restbeam
Browse files Browse the repository at this point in the history
Import breaksec on rests from MusicXML [skip-ci]
  • Loading branch information
lpugin authored Feb 19, 2024
2 parents ae00a34 + e1f3a07 commit 75efb61
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/iomusxml.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3625,6 +3625,10 @@ void MusicXmlInput::ReadMusicXmlNote(
TabGrp *tabGrp = vrv_cast<TabGrp *>(element);
tabGrp->SetBreaksec(breakSec);
}
if (element->Is(REST)) {
Rest *rest = vrv_cast<Rest *>(element);
rest->SetBreaksec(breakSec);
}
}
else {
if (IsInStack(BEAM, layer)) {
Expand Down

0 comments on commit 75efb61

Please sign in to comment.