From a97db4ced6286c02dd269c6e985c412fe2c86cb1 Mon Sep 17 00:00:00 2001 From: Marc Hohl Date: Fri, 14 May 2010 08:21:03 +0200 Subject: [PATCH] Issue 1080: corrected spacing in double bar lines --- lily/bar-line.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lily/bar-line.cc b/lily/bar-line.cc index d3f21e5350..a7f9024783 100644 --- a/lily/bar-line.cc +++ b/lily/bar-line.cc @@ -199,15 +199,15 @@ Bar_line::compound_barline (Grob *me, string str, Real h, m.add_at_edge (X_AXIS, RIGHT, thin, 0); m.add_at_edge (X_AXIS, RIGHT, thin, thinkern); */ - m.add_at_edge (X_AXIS, LEFT, thin, thinkern / 2); - m.add_at_edge (X_AXIS, RIGHT, thin, thinkern / 2); + m.add_at_edge (X_AXIS, LEFT, thin, thinkern); + m.add_at_edge (X_AXIS, RIGHT, thin, thinkern); } else if (str.find ("S") != NPOS || str == "|._.|") { // Handle all varsegno stuff Stencil segno; - segno.add_at_edge (X_AXIS, LEFT, thin, thinkern / 2); - segno.add_at_edge (X_AXIS, RIGHT, thin, thinkern / 2); + segno.add_at_edge (X_AXIS, LEFT, thin, thinkern); + segno.add_at_edge (X_AXIS, RIGHT, thin, thinkern); segno.add_stencil (Font_interface::get_default_font (me)->find_by_name ("scripts.varsegno")); if (str == "S") -- 2.39.2