From: Joe Neeman Date: Mon, 19 Feb 2007 08:27:25 +0000 (+1100) Subject: Also allow a break when there is a grace note at the beginning X-Git-Tag: release/2.11.20-1~18^2~6 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=2eff8d2d5447fc3f40f8c006d167a95ba35c17f7;p=lilypond.git Also allow a break when there is a grace note at the beginning --- diff --git a/lily/bar-engraver.cc b/lily/bar-engraver.cc index 263c7538bc..b5aa09e6b8 100644 --- a/lily/bar-engraver.cc +++ b/lily/bar-engraver.cc @@ -89,7 +89,7 @@ Bar_engraver::typeset_bar () void Bar_engraver::stop_translation_timestep () { - if (!bar_ && now_mom () != Moment (Rational (0), Rational (0))) + if (!bar_ && now_mom ().main_part_ > Rational (0)) context ()->get_score_context ()->set_property ("forbidBreak", SCM_BOOL_T); else typeset_bar ();