feat(tracker): hide playing row indicator when not playing

This commit is contained in:
vsariola
2021-01-07 13:15:57 +02:00
parent e7cd1b295b
commit 8b23fb5c05
2 changed files with 15 additions and 2 deletions

View File

@ -62,6 +62,8 @@ func (t *Tracker) TogglePlay() {
t.Playing = !t.Playing
if t.Playing {
t.NoteTracking = true
t.PlayPattern = t.DisplayPattern
t.PlayRow = t.CursorRow - 1
}
}