fix seek bar changing size with num. digits in track time

This commit is contained in:
Drew Weymouth
2023-02-05 16:56:11 -08:00
parent a6a4444524
commit 58153327e6
2 changed files with 22 additions and 5 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ func SecondsToTimeString(s float64) string {
min := sec / 60
sec -= min * 60
return fmt.Sprintf("%3d:%02d", min, sec)
return fmt.Sprintf("%d:%02d", min, sec)
}
func RichTextSegsFromHTMLString(s string) []widget.RichTextSegment {