]> git.donarmstrong.com Git - lilypond.git/commitdiff
Decrease the compression penalty. Gets typography-demo back onto 1 page.
authorJoe Neeman <joeneeman@gmail.com>
Thu, 22 Nov 2007 06:39:53 +0000 (17:39 +1100)
committerJoe Neeman <joeneeman@gmail.com>
Mon, 26 Nov 2007 23:22:55 +0000 (10:22 +1100)
lily/simple-spacer.cc

index fcad2f18c126897929ce27c4690d994334810ede..f16e6070610152750213562cca1cbbd4bd15b9f3 100644 (file)
@@ -266,7 +266,7 @@ Simple_spacer::force_penalty (bool ragged) const
 
   /* Use a convex compression penalty. */
   Real f = force_;
-  return f - (f < 0 ? f*f*f*f*4 : 0);
+  return f - (f < 0 ? f*f*f*f*2 : 0);
 }
 
 /****************************************************************/