From: Carl Worth Date: Fri, 27 Sep 2013 15:28:40 +0000 (-0700) Subject: Abbreviate "unknown chord" to a simple question mark X-Git-Url: https://git.cworth.org/git?p=scherzo;a=commitdiff_plain;h=d25fa8b91eb2e9dad783584215c35124b65429a8 Abbreviate "unknown chord" to a simple question mark This gets the idea across, and is less distracting when it appears transiently while pressing or releasing the notes of a chord. --- diff --git a/scherzo.c b/scherzo.c index ce57e9d..8152418 100644 --- a/scherzo.c +++ b/scherzo.c @@ -1008,7 +1008,7 @@ HAVE_MATCH: _spell_chord_by_signature (note_group, num_notes, match, root); } else { - chord_name = talloc_strdup (local, "Unknown chord"); + chord_name = talloc_strdup (local, "?"); } scherzo->chord = score_add_chord (scherzo->treble, chord_name);