]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/note-spacing.cc
Adapt doc to reflect fix for #647.
[lilypond.git] / lily / note-spacing.cc
index 96f7b8f8e35078da3b53b6be2f5daa18c38d619b..90db07a7e82ab1159a3804c4308b3f9bccc21fcb 100644 (file)
@@ -95,6 +95,8 @@ Note_spacing::get_spacing (Grob *me, Item *right_col,
   ideal = max (ideal, min_desired_space);
   stem_dir_correction (me, right_col, increment, &ideal, &min_desired_space);
 
+  /* TODO: grace notes look bad when things are stretched. Should we increase
+     their stretch strength? */
   Spring ret (max (0.0, ideal), min_dist);
   ret.set_inverse_compress_strength (max (0.0, ideal - min_desired_space));
   ret.set_inverse_stretch_strength (max (0.1, base_space - increment));
@@ -311,13 +313,12 @@ Note_spacing::stem_dir_correction (Grob *me, Item *rcolumn,
 ADD_INTERFACE (Note_spacing,
               "This object calculates spacing wishes for individual voices.",
 
-              
+              /* properties */
               "knee-spacing-correction "
               "left-items "
               "right-items "
               "same-direction-correction "
               "stem-spacing-correction "
               "space-to-barline "
-
               );