Bugfix : nextDuration not cleared after consumption in Solfa.kt

This commit is contained in:
dotmg 2026-04-21 17:55:17 +02:00
parent e3ca594a97
commit 2e1d84e8c6

View file

@ -587,6 +587,7 @@ class Solfa(val sharedScreenModel: SharedScreenModel, private val fileRepository
'@' -> { '@' -> {
if (lastNoteString == "z") { if (lastNoteString == "z") {
midiDuration += nextDuration midiDuration += nextDuration
nextDuration = 0
} else { } else {
pushMidi() pushMidi()
} }