|
@@ -154,7 +154,7 @@ export class VoiceGenerator {
|
|
|
parentStaffEntry: SourceStaffEntry, parentMeasure: SourceMeasure,
|
|
|
measureStartAbsoluteTimestamp: Fraction, maxTieNoteFraction: Fraction, chord: boolean, octavePlusOne: boolean,
|
|
|
printObject: boolean, isCueNote: boolean, isGraceNote: boolean, stemDirectionXml: StemDirectionType, tremoloStrokes: number,
|
|
|
- stemColorXml: string, noteheadColorXml: string, vibratoStrokes: boolean,
|
|
|
+ stemColorXml: string, noteheadColorXml: string,
|
|
|
dotsXml: number): Note {
|
|
|
this.currentStaffEntry = parentStaffEntry;
|
|
|
this.currentMeasure = parentMeasure;
|
|
@@ -164,7 +164,7 @@ export class VoiceGenerator {
|
|
|
this.currentNote = restNote
|
|
|
? this.addRestNote(noteNode.element("rest"), noteDuration, noteTypeXml, normalNotes, printObject, isCueNote, noteheadColorXml)
|
|
|
: this.addSingleNote(noteNode, noteDuration, noteTypeXml, typeDuration, normalNotes, chord, octavePlusOne,
|
|
|
- printObject, isCueNote, isGraceNote, stemDirectionXml, tremoloStrokes, stemColorXml, noteheadColorXml, vibratoStrokes);
|
|
|
+ printObject, isCueNote, isGraceNote, stemDirectionXml, tremoloStrokes, stemColorXml, noteheadColorXml);
|
|
|
this.currentNote.DotsXml = dotsXml;
|
|
|
// read lyrics
|
|
|
const lyricElements: IXmlElement[] = noteNode.elements("lyric");
|
|
@@ -369,7 +369,7 @@ export class VoiceGenerator {
|
|
|
private addSingleNote(node: IXmlElement, noteDuration: Fraction, noteTypeXml: NoteType, typeDuration: Fraction,
|
|
|
normalNotes: number, chord: boolean, octavePlusOne: boolean,
|
|
|
printObject: boolean, isCueNote: boolean, isGraceNote: boolean, stemDirectionXml: StemDirectionType, tremoloStrokes: number,
|
|
|
- stemColorXml: string, noteheadColorXml: string, vibratoStrokes: boolean): Note {
|
|
|
+ stemColorXml: string, noteheadColorXml: string): Note {
|
|
|
//log.debug("addSingleNote called");
|
|
|
let noteAlter: number = 0;
|
|
|
let accidentalValue: string;
|
|
@@ -523,7 +523,7 @@ export class VoiceGenerator {
|
|
|
} else {
|
|
|
// create TabNote
|
|
|
note = new TabNote(this.currentVoiceEntry, this.currentStaffEntry, noteLength, pitch, this.currentMeasure,
|
|
|
- stringNumber, fretNumber, bends, vibratoStrokes);
|
|
|
+ stringNumber, fretNumber, bends);
|
|
|
}
|
|
|
|
|
|
this.addNoteInfo(note, noteTypeXml, printObject, isCueNote, normalNotes,
|