Skip to content

Commit

Permalink
better sign for tied notes
Browse files Browse the repository at this point in the history
  • Loading branch information
agourlay committed Dec 7, 2024
1 parent 34527d1 commit 53d44d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/canvas_measure.rs
Original file line number Diff line number Diff line change
Expand Up @@ -536,8 +536,8 @@ fn note_value(note: &Note) -> String {
}
}
NoteType::Tie => {
// https://unicodeplus.com/U+2040
std::char::from_u32(0x2040).unwrap().into()
// https://unicodeplus.com/U+2323
std::char::from_u32(0x2323).unwrap().into()
}
NoteType::Dead => "x".to_string(),
NoteType::Unknown(i) => {
Expand Down

0 comments on commit 53d44d9

Please sign in to comment.