From 07a9933ff1e28c56a904c73ebf4b65b5f8d22fd9 Mon Sep 17 00:00:00 2001 From: Trevor Daniels Date: Thu, 24 Mar 2011 22:26:28 +0000 Subject: [PATCH] Alignment of lyrics to manual melismata now honours ignoreMelismata - fix the fix to issue 773 in 6442b487 (thanks Neil!) --- lily/lyric-engraver.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lily/lyric-engraver.cc b/lily/lyric-engraver.cc index 3bc2c121bf..eafde88b33 100644 --- a/lily/lyric-engraver.cc +++ b/lily/lyric-engraver.cc @@ -81,8 +81,10 @@ Lyric_engraver::process_music () } Context *voice = get_voice_to_lyrics (context ()); - if (last_text_ && voice && - to_boolean (voice->get_property ("melismaBusy"))) + if (last_text_ + && voice + && to_boolean (voice->get_property ("melismaBusy")) + && !to_boolean (context ()->get_property ("ignoreMelismata"))) last_text_->set_property ("self-alignment-X", get_property ("lyricMelismaAlignment")); } -- 2.39.2