whoops missed synced param

This commit is contained in:
Drew Weymouth
2024-05-16 18:33:59 -07:00
parent e8d751bc2a
commit d156bf02e0
+1 -1
View File
@@ -49,7 +49,7 @@ func (l *LyricsViewer) SetLyrics(lyrics *mediaprovider.Lyrics) {
for i, line := range lyrics.Lines {
lines[i] = line.Text
}
l.viewer.SetLyrics(lines, false /*synced*/)
l.viewer.SetLyrics(lines, lyrics.Synced)
if l.isEmpty {
l.container.Objects[0] = l.viewer
l.isEmpty = false