X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=lily%2Fauto-beam-engraver.cc;h=7c418a024b1913ee3c0b91e862b48c4164332c4d;hb=27c10914b6b29e751a97d0e73be86f101e7069a7;hp=aef96d8da5c3387953fd9aa5c9c74429a5e48222;hpb=4478a4f00c0958af4964af412fa9e0e050569fe0;p=lilypond.git diff --git a/lily/auto-beam-engraver.cc b/lily/auto-beam-engraver.cc index aef96d8da5..7c418a024b 100644 --- a/lily/auto-beam-engraver.cc +++ b/lily/auto-beam-engraver.cc @@ -191,8 +191,8 @@ Auto_beam_engraver::test_moment (Direction dir, Moment test_mom) void Auto_beam_engraver::consider_begin (Moment test_mom) { - bool off = to_boolean (get_property ("noAutoBeaming")); - if (!stem_l_arr_p_ && ! off) + bool on = to_boolean (get_property ("autoBeaming")); + if (!stem_l_arr_p_ && on) { bool b = test_moment (START, test_mom); if (b) @@ -206,7 +206,7 @@ Auto_beam_engraver::consider_end (Moment test_mom) if (stem_l_arr_p_) { /* Allow already started autobeam to end: - don't check for noAutoBeaming */ + don't check for autoBeaming */ bool b = test_moment (STOP, test_mom); if (b) end_beam (); @@ -481,5 +481,5 @@ stemRightBeamCount. ", /* creats*/ "Beam", /* acks */ "stem-interface rest-interface beam-interface bar-line-interface", -/* reads */ "noAutoBeaming autoBeamSettings subdivideBeams", +/* reads */ "autoBeaming autoBeamSettings subdivideBeams", /* write */ "");