summaryrefslogtreecommitdiff
path: root/input
diff options
context:
space:
mode:
authorThomas Morley <thomasmorley65@gmail.com>2015-11-08 23:32:32 +0100
committerDavid Kastrup <dak@gnu.org>2015-11-17 16:13:33 +0100
commit84ac019c437ea40b7b18ab46da1772f6db344a83 (patch)
treed02f04539ccb79ff291b0625d77aa3afb304964b /input
parent4d8ae12d918b0183f85c3b1dc93f65c7711104a3 (diff)
make supportNonIntegerFret a context-property
issue 4655 restores the arguments of determine-frets (changed with issue 4643) to the previous state, changes the code of determine-frets to rely on the newly created supportNonIntegerFret-context-property
Diffstat (limited to 'input')
-rw-r--r--input/regression/tablature-micro-tone.ly5
1 files changed, 3 insertions, 2 deletions
diff --git a/input/regression/tablature-micro-tone.ly b/input/regression/tablature-micro-tone.ly
index ff02d79bdb..461dd2f824 100644
--- a/input/regression/tablature-micro-tone.ly
+++ b/input/regression/tablature-micro-tone.ly
@@ -3,7 +3,8 @@
\header {
texidoc = "The @code{TabStaff} will print micro-tones as mixed numbers of
fret-number and a fraction.
-@code{noteToFretFunction = #(my-determine-frets #t)} needs to be set in Score.
+The context-property @code{supportNonIntegerFret} needs to be set @code{#t}
+in @code{Score}-context.
@code{FretBoards} will print those micro-tones only if they can be found in the
chosen settings for @code{stringTunings}, otherwise a warning (surpressed here)
will be printed and an empty @code{FretBoard} returned. Which should be the
@@ -16,7 +17,7 @@ case here for the first pitch: @code{gih}"
\layout {
\context {
\Score
- noteToFretFunction = #(determine-frets #t)
+ supportNonIntegerFret = ##t
}
}