Skip to content

Commit

Permalink
Fixed: Breve bar rests are now properly recognized
Browse files Browse the repository at this point in the history
  • Loading branch information
ahankinson committed Oct 15, 2015
1 parent ccc1434 commit 3d5a12a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/ExportGenerators.mss
Original file line number Diff line number Diff line change
Expand Up @@ -844,6 +844,11 @@ function GenerateBarRest (bobj) {
//$module(ExportGenerators.mss)
switch (bobj.RestType)
{
case(BreveBarRest)
{
obj = libmei.MRest();
libmei.AddAttribute(obj, 'dur', 'breve');
}
case (WholeBarRest)
{
obj = libmei.MRest();
Expand Down

0 comments on commit 3d5a12a

Please sign in to comment.