Skip to content

Commit

Permalink
fix wrong tool tip on repeat control
Browse files Browse the repository at this point in the history
  • Loading branch information
dweymouth committed Aug 23, 2024
1 parent 91964d9 commit 8339b8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions res/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@
"Reload": "Reload",
"Remix": "Remix",
"Remove from playlist": "Remove from playlist",
"Repeat": "Repeat",
"ReplayGain mode": "ReplayGain mode",
"ReplayGain preamp": "ReplayGain preamp",
"Restart required": "Restart required",
Expand Down
2 changes: 1 addition & 1 deletion ui/widgets/auxcontrols.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func NewAuxControls(initialVolume int) *AuxControls {
showQueue: NewIconButton(myTheme.PlayQueueIcon, nil),
}
a.loop.IconSize = IconButtonSizeSmaller
a.loop.SetToolTip(lang.L("Shuffle"))
a.loop.SetToolTip(lang.L("Repeat"))
a.showQueue.IconSize = IconButtonSizeSmaller
a.showQueue.SetToolTip(lang.L("Show play queue"))
a.container = container.NewHBox(
Expand Down

0 comments on commit 8339b8d

Please sign in to comment.