diff options
author | Joe Neeman <joeneeman@gmail.com> | 2007-11-22 17:39:53 +1100 |
---|---|---|
committer | Joe Neeman <joeneeman@gmail.com> | 2007-11-27 10:22:55 +1100 |
commit | c409b227db9cd5736f982ae07d3d8b4cf8f75dcb (patch) | |
tree | 4b612e923a485b30ed8de00eea9d98522688f893 /lily/simple-spacer.cc | |
parent | 3b22b865c316093b8cb65a689cc3c66b51ce8834 (diff) |
Decrease the compression penalty. Gets typography-demo back onto 1 page.
Diffstat (limited to 'lily/simple-spacer.cc')
-rw-r--r-- | lily/simple-spacer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lily/simple-spacer.cc b/lily/simple-spacer.cc index fcad2f18c1..f16e607061 100644 --- a/lily/simple-spacer.cc +++ b/lily/simple-spacer.cc @@ -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); } /****************************************************************/ |