From: Mats Bengtsson Date: Tue, 22 Jan 2008 09:20:44 +0000 (+0100) Subject: Check the bar type from glyph-name instead of glyph, so you get X-Git-Tag: release/2.11.38-1~30 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=566d4aa89192eedd7930b3dda8e69900270c289e;p=lilypond.git Check the bar type from glyph-name instead of glyph, so you get vertical endings as expected also for custom bar types. --- diff --git a/lily/volta-bracket.cc b/lily/volta-bracket.cc index cedc7df6cb..e1d3fa8a4a 100644 --- a/lily/volta-bracket.cc +++ b/lily/volta-bracket.cc @@ -119,7 +119,7 @@ Volta_bracket_interface::modify_edge_height (Spanner *me) extract_grob_set (me, "bars", bars); Grob *endbar = bars.size () ? bars.back () : 0; - SCM glyph = endbar ? endbar->get_property ("glyph") : SCM_EOL; + SCM glyph = endbar ? endbar->get_property ("glyph-name") : SCM_EOL; string str; if (scm_is_string (glyph))