From: Joe Neeman Date: Thu, 16 Aug 2007 21:47:14 +0000 (+1000) Subject: Fix commit de8fda6a51 to only decrease the amount of whitespace. X-Git-Tag: release/2.11.30-1~20 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=7227d4397875a176cc9dc94ede56c85fc23fe577;p=lilypond.git Fix commit de8fda6a51 to only decrease the amount of whitespace. --- diff --git a/lily/note-spacing.cc b/lily/note-spacing.cc index d19f63e632..cd97c17970 100644 --- a/lily/note-spacing.cc +++ b/lily/note-spacing.cc @@ -84,7 +84,7 @@ Note_spacing::get_spacing (Grob *me, Item *right_col, { Real shift = bar->extent (right_col, X_AXIS)[LEFT]; ideal -= shift; - min_desired_space -= shift; + min_desired_space -= max (shift, 0.0); } }