From: Carl Sorensen Date: Mon, 17 Jan 2011 23:34:08 +0000 (-0700) Subject: Fix 960 -- Add a regression test demonstrating dot alignments X-Git-Tag: release/2.13.47-1~49 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=794b2bc023608a2f959f7bad3d00666fa17ea3f3;hp=9a17ff7c0ffc31ef9000e6c0ecbee1d225baae10;p=lilypond.git Fix 960 -- Add a regression test demonstrating dot alignments --- diff --git a/input/regression/tablature-dot-placement.ly b/input/regression/tablature-dot-placement.ly new file mode 100644 index 0000000000..2665f21d78 --- /dev/null +++ b/input/regression/tablature-dot-placement.ly @@ -0,0 +1,29 @@ +\version "2.13.46" + +\header { + + texidoc = " +With full notation, the dots on the tablature heads should +respect two-digit fret numbers. +" + +} + +myMusic = \relative c' { + 4. + 4. + 4 +} + +\score { + << + \new Staff { + \clef "treble_8" + \myMusic + } + \new TabStaff { + \tabFullNotation + \myMusic + } + >> +}