1\version "2.21.0"
2\header {
3  texidoc = "Padding does not cause @code{VowelTransition}s to become
4shorter than @code{minimum-length}.  Instead, space is added if
5necessary leaving the arrow at @code{minimum-length}."
6  }
7
8\layout {
9  ragged-right = ##t
10}
11
12\score {
13  {
14    \relative {
15      c'2( c) |
16      c( c) |
17      c( ^\markup { \left-column { \tiny {
18          "Padded, but"
19          "spacing is"
20          "not changed."
21          "(Arrow is still"
22          "longer than"
23          "minimum-length)" } } } c) |
24      c( c) | \break
25      c c |
26      c ^\markup { \left-column { \tiny {
27          "Space is added"
28          "to allow for"
29          "padding. Arrow"
30          "is drawn at"
31          "minimum-length" } } } c |
32    }
33
34    \addlyrics {
35      a \vowelTransition b
36      \once \override VowelTransition.bound-details.left.padding = #3
37      \once \override VowelTransition.bound-details.right.padding = #3
38      c \vowelTransition d
39      eeeee \vowelTransition fffff
40      \once \override VowelTransition.bound-details.left.padding = #3
41      \once \override VowelTransition.bound-details.right.padding = #3
42      ggggg \vowelTransition hhhhh
43    }
44  }
45}
46