fix wrong tool tip on repeat control

This commit is contained in:
Drew Weymouth
2024-08-23 08:01:28 -07:00
parent 91964d9608
commit 8339b8dbc5
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -147,6 +147,7 @@
"Reload": "Reload", "Reload": "Reload",
"Remix": "Remix", "Remix": "Remix",
"Remove from playlist": "Remove from playlist", "Remove from playlist": "Remove from playlist",
"Repeat": "Repeat",
"ReplayGain mode": "ReplayGain mode", "ReplayGain mode": "ReplayGain mode",
"ReplayGain preamp": "ReplayGain preamp", "ReplayGain preamp": "ReplayGain preamp",
"Restart required": "Restart required", "Restart required": "Restart required",
+1 -1
View File
@@ -32,7 +32,7 @@ func NewAuxControls(initialVolume int) *AuxControls {
showQueue: NewIconButton(myTheme.PlayQueueIcon, nil), showQueue: NewIconButton(myTheme.PlayQueueIcon, nil),
} }
a.loop.IconSize = IconButtonSizeSmaller a.loop.IconSize = IconButtonSizeSmaller
a.loop.SetToolTip(lang.L("Shuffle")) a.loop.SetToolTip(lang.L("Repeat"))
a.showQueue.IconSize = IconButtonSizeSmaller a.showQueue.IconSize = IconButtonSizeSmaller
a.showQueue.SetToolTip(lang.L("Show play queue")) a.showQueue.SetToolTip(lang.L("Show play queue"))
a.container = container.NewHBox( a.container = container.NewHBox(