]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/key-performer.cc
thinko for trill-spanner
[lilypond.git] / lily / key-performer.cc
index c2fc6346cc4909b639d26f01addad75cb341bad2..9bb8b11a48edcabdfbb3330ebb24d85a2f60bee0 100644 (file)
@@ -66,8 +66,8 @@ Key_performer::process_music ()
       SCM third = scm_assoc (scm_from_int (2),
                             c_pitchlist);
       bool minor = (scm_is_pair (third)
-                   && scm_is_integer (scm_cdr (third))
-                   && scm_to_int (scm_cdr (third)) == FLAT);
+                   && scm_is_number (scm_cdr (third))
+                   && ly_scm2rational (scm_cdr (third)) == FLAT_ALTERATION);
 
       audio_ = new Audio_key (scm_to_int (acc),
                              !minor);
@@ -83,7 +83,6 @@ Key_performer::stop_translation_timestep ()
 {
   if (audio_)
     {
-      play_element (audio_);
       audio_ = 0;
     }
 }
@@ -97,6 +96,7 @@ Key_performer::listen_key_change (Stream_event *ev)
 }
 
 ADD_TRANSLATOR (Key_performer,
-               "", "",
-               "key-change-event",
-               "", "");
+               "",
+               "",
+               "",
+               "");