From 2eff8d2d5447fc3f40f8c006d167a95ba35c17f7 Mon Sep 17 00:00:00 2001 From: Joe Neeman Date: Mon, 19 Feb 2007 19:27:25 +1100 Subject: [PATCH] Also allow a break when there is a grace note at the beginning --- lily/bar-engraver.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 (); -- 2.39.2