Skip to content

Commit

Permalink
display tie notes
Browse files Browse the repository at this point in the history
  • Loading branch information
agourlay committed Dec 7, 2024
1 parent 922ea52 commit 2c2bb79
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/ui/canvas_measure.rs
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,10 @@ fn note_value(note: &Note) -> String {
note.value.to_string()
}
}
NoteType::Tie => String::new(),
NoteType::Tie => {
// https://unicodeplus.com/U+2040
std::char::from_u32(0x2040).unwrap().into()
}
NoteType::Dead => "x".to_string(),
NoteType::Unknown(i) => {
log::warn!("NoteType Unknown({})", i);
Expand Down

0 comments on commit 2c2bb79

Please sign in to comment.