From d156bf02e0ececb14cce5c48057ff4bcf7dab43c Mon Sep 17 00:00:00 2001 From: Drew Weymouth Date: Thu, 16 May 2024 18:33:59 -0700 Subject: [PATCH] whoops missed synced param --- ui/widgets/lyricsviewer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/widgets/lyricsviewer.go b/ui/widgets/lyricsviewer.go index 21d277a..7d7c09f 100644 --- a/ui/widgets/lyricsviewer.go +++ b/ui/widgets/lyricsviewer.go @@ -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