Is there an existing issue for this?
Current Behavior
the erro like:

Expected Behavior
The right one should be like this

Steps To Reproduce
the err file here
sb.zip
Link to jsFiddle, CodePen, Project
No response
Found in Version
1.2
Platform
Node.js
Environment
Anything else?
I found
TabBrushGlyph.ts on 24 line begin may be wrong:
let startY: number =
cy + this.x + (tabBarRenderer.getNoteY(this._beat.maxNote!, NoteYPosition.Top));
let endY: number =
cy + this.y + tabBarRenderer.getNoteY(this._beat.minNote!, NoteYPosition.Bottom);
this._beat.maxNote! and this._beat.minNote! is erro Should be changed to
this._beat.maxStringNote! and this._beat.minStringNote!
Complete code:
let startY: number =
cy + this.x + (tabBarRenderer.getNoteY(this._beat.maxNote!, NoteYPosition.Top));
let endY: number =
cy + this.y + tabBarRenderer.getNoteY(this._beat.minStringNote!, NoteYPosition.Bottom);
Is there an existing issue for this?
Current Behavior
the erro like:

Expected Behavior
The right one should be like this
Steps To Reproduce
the err file here
sb.zip
Link to jsFiddle, CodePen, Project
No response
Found in Version
1.2
Platform
Node.js
Environment
Anything else?
I found
TabBrushGlyph.ts on 24 line begin may be wrong:
this._beat.maxNote! and this._beat.minNote! is erro Should be changed to
this._beat.maxStringNote! and this._beat.minStringNote!
Complete code: