From 7227d4397875a176cc9dc94ede56c85fc23fe577 Mon Sep 17 00:00:00 2001 From: Joe Neeman Date: Fri, 17 Aug 2007 07:47:14 +1000 Subject: [PATCH] Fix commit de8fda6a51 to only decrease the amount of whitespace. --- lily/note-spacing.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } -- 2.39.2