From 19c940623ac388a6910853a26eaf0ec5f8a52a53 Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 24 Mar 2002 20:04:17 +0000 Subject: [PATCH] lilypond-0.1.36 --- input/font.ly | 2 ++ lily/rest.cc | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/input/font.ly b/input/font.ly index ac54e3e36a..c2f1d25ef4 100644 --- a/input/font.ly +++ b/input/font.ly @@ -75,6 +75,8 @@ TestedFeatures = "This file tests the Feta music-font" \meter 7/8; a2.. | \meter 9/8; a1... | \meter 12/8; a1. | + \meter 12/4; + r1. r2. r4. r8. r16. r32. r64. r64. | } \paper{ % don't change this. diff --git a/lily/rest.cc b/lily/rest.cc index 4cf872f613..0028373cf5 100644 --- a/lily/rest.cc +++ b/lily/rest.cc @@ -23,8 +23,10 @@ Rest::do_add_processing () position_i_ += 2; Rhythmic_head::do_add_processing (); - if (dots_l_) - dots_l_->position_i_ = position_i_; + if (dots_l_ && balltype_i_ > 1) + { + dots_l_->position_i_ = position_i_ + 4; + } } Rest::Rest () -- 2.39.5