]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/dots-engraver.cc
Fix #778
[lilypond.git] / lily / dots-engraver.cc
index bf0d67fd0b7c5ab3f42fb050ad12845c42353145..11b384749a53a12af6cccb78a3f2c19b94804ae4 100644 (file)
@@ -3,7 +3,7 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 2006--2007 Han-Wen Nienhuys <hanwen@lilypond.org>
+  (c) 2006--2009 Han-Wen Nienhuys <hanwen@lilypond.org>
   
 */
 
@@ -36,7 +36,6 @@ Dots_engraver::acknowledge_rhythmic_head (Grob_info gi)
   Grob *note = gi.grob ();
   if (unsmob_grob (note->get_object ("dot")))
     return;
-
   
   Duration *dur = unsmob_duration (cause->get_property ("duration"));
   if (dur && dur->dot_count ())
@@ -44,7 +43,6 @@ Dots_engraver::acknowledge_rhythmic_head (Grob_info gi)
       Item *d = make_item ("Dots", note->self_scm ());
       Rhythmic_head::set_dots (note, d);
 
-      d->set_property ("dot-count", scm_from_int (dur->dot_count ()));
       d->set_parent (note, Y_AXIS);
     }
 }