From c023dc08b8da246432523689563413596ce8e141 Mon Sep 17 00:00:00 2001 From: "5684185+vsariola@users.noreply.github.com" <5684185+vsariola@users.noreply.github.com> Date: Wed, 11 Jun 2025 19:43:05 +0300 Subject: [PATCH] fix(tracker/gioui): BPM tooltip showed "Song length", not BPM --- tracker/gioui/songpanel.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tracker/gioui/songpanel.go b/tracker/gioui/songpanel.go index 3059390..c72d8e9 100644 --- a/tracker/gioui/songpanel.go +++ b/tracker/gioui/songpanel.go @@ -115,7 +115,7 @@ func (t *SongPanel) layoutSongOptions(gtx C, tr *Tracker) D { func(gtx C) D { return layout.Flex{Axis: layout.Vertical}.Layout(gtx, layout.Rigid(func(gtx C) D { - return layoutSongOptionRow(gtx, tr.Theme, "BPM", NumUpDown(tr.Theme, t.BPM, "Song Length").Layout) + return layoutSongOptionRow(gtx, tr.Theme, "BPM", NumUpDown(tr.Theme, t.BPM, "BPM").Layout) }), layout.Rigid(func(gtx C) D { return layoutSongOptionRow(gtx, tr.Theme, "Song length", NumUpDown(tr.Theme, t.SongLength, "Song Length").Layout)