Show repeated notes with tin_whistle_tablature plugin?
I've successfully figured out how to configure instrument settings, got the plugin working, and am down to just one quirk for the tin whistle tabs plugin that's adding friction to my practice.
When a note is repeated, it only shows the tab for the first instance. The result is that I can't easily see the phrase (forgive my noob terminology, I'm figuring that out as I go, too). I've attached both the .mscz and a screenshot highlighting the potholes for me.
Is there something I can change about my arrangement that would sidestep whatever is dropping the repeats?
Attachment | Size |
---|---|
Snag_38c523c3.png | 228.73 KB |
Kerry_Polka.mscz | 18 KB |
Comments
This is by design:
if (pitch === lastPitch) {
// don't add tab if parent note is same pitch as previous note
console.log("Skipped repeated parent note, pitches : " + pitch + ", " + lastPitch)
Attached a custom version without this check.
It still won't repeat tied notes.
In reply to This is by design: if … by graffesmusic
Oh, thanks!! Now that I know the qml is a human-readable markup (let alone javascript-like), I can tweak it to my heart's content. My programming skills are a LOT more trained than my tin whistle ones. :)