I took you example and changed to be closer to what I'm trying to do. I
still see the same issue. The fret settings are ignored on whichever
tab is second.
So I must be missing something on how the tabs are strung together or
something.
\version "2.25.22"
\language "english"
steelGuitarSixStringCSixTuning = \stringTuning <c e g a c' e'>
bckngNotes = \relative c' {
d,8 e f g a b c d | d, e f g a b c d |
}
gtrBackingNoteDetails = {
s1
\set Staff.stringTunings = #guitar-tuning |
\set restrainOpenStrings = ##t
\set minimumFret = #3
s1
}
stlBackingNoteDetails = {
s1
\set Staff.stringTunings = \steelGuitarSixStringCSixTuning |
\set restrainOpenStrings = ##t
\set minimumFret = #2
s1
}
fullScore = {
<<
\new TabStaff{
<< {\stlBackingNoteDetails} \bckngNotes >>
}
\new TabStaff{
<< {\gtrBackingNoteDetails} \bckngNotes>>
}
>>
}
\score{
\fullScore
}