We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e903717 commit bd9b7ceCopy full SHA for bd9b7ce
src/timesigglyph.ts
@@ -75,6 +75,8 @@ export class TimeSignatureGlyph extends Glyph {
75
height = Math.max(height, botGlyph.getMetrics().height);
76
}
77
78
+ // If the height of the digits is more than two staff spaces (20), shift to the next line
79
+ // in order to center the digits on lines 1 and 5 rather than 2 and 4.
80
this.lineShift = height > 20 ? 1 : 0;
81
82
this.width = Math.max(topWidth, botWidth);
0 commit comments