From 82ac8e9a68b20c84a4945356e0b86b5881edbdef Mon Sep 17 00:00:00 2001 From: fred Date: Tue, 26 Mar 2002 22:23:47 +0000 Subject: [PATCH] lilypond-1.1.60 --- lily/spring-spacer.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lily/spring-spacer.cc b/lily/spring-spacer.cc index 9c1f6881d6..f80fe91561 100644 --- a/lily/spring-spacer.cc +++ b/lily/spring-spacer.cc @@ -77,14 +77,15 @@ Spring_spacer::handle_loose_cols() connected.connect (fixed[i-1], fixed[i]); /* - connect unconnected columns with distances of 1.0; + If columns do not have spacing information set, we need to supply our own. */ + Real d = paper_l ()->get_var ("loose_column_distance"); for (int i = cols_.size(); i--;) { if (! connected.equiv (fixed[0], i)) { connected.connect (i-1, i); - connect (i-1, i, 1.0, 1.0); + connect (i-1, i, d, 1.0); } } } -- 2.39.5