Skip to content

Commit 692a6f0

Browse files
committed
fix: Ensure exports and use of correct dynamics glyph
1 parent 88e9107 commit 692a6f0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/model/_barrel.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export { AccentuationType } from '@src/model/AccentuationType';
22
export { AccidentalType } from '@src/model/AccidentalType';
33
export { AutomationType, Automation } from '@src/model/Automation';
4-
export { Bar, SustainPedalMarkerType, SustainPedalMarker, BarSubElement, BarStyle } from '@src/model/Bar';
4+
export { Bar, SustainPedalMarkerType, SustainPedalMarker, BarSubElement, BarStyle, BarLineStyle } from '@src/model/Bar';
55
export { BarreShape } from '@src/model/BarreShape';
66
export { Beat, BeatBeamingMode, BeatSubElement, BeatStyle } from '@src/model/Beat';
77
export { BendPoint } from '@src/model/BendPoint';
@@ -45,7 +45,7 @@ export {
4545
TrackNameOrientation
4646
} from '@src/model/RenderStylesheet';
4747
export { RepeatGroup } from '@src/model/RepeatGroup';
48-
export { Score, ScoreSubElement, ScoreStyle } from '@src/model/Score';
48+
export { Score, ScoreSubElement, ScoreStyle, HeaderFooterStyle } from '@src/model/Score';
4949
export { Section } from '@src/model/Section';
5050
export { SimileMark } from '@src/model/SimileMark';
5151
export { SlideInType } from '@src/model/SlideInType';

src/rendering/glyphs/DynamicsGlyph.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export class DynamicsGlyph extends MusicFontGlyph {
5656
case DynamicValue.RFZ:
5757
return MusicFontSymbol.DynamicRinforzando2;
5858
case DynamicValue.SFZ:
59-
return MusicFontSymbol.DynamicSforzando1;
59+
return MusicFontSymbol.DynamicSforzato;
6060
case DynamicValue.SFFZ:
6161
return MusicFontSymbol.DynamicSforzatoFF;
6262
case DynamicValue.FZ:

0 commit comments

Comments
 (0)