Fix #496: Persist repeat mode setting across restarts
This commit is contained in:
@@ -25,7 +25,7 @@ type AuxControls struct {
|
||||
container *fyne.Container
|
||||
}
|
||||
|
||||
func NewAuxControls(initialVolume int) *AuxControls {
|
||||
func NewAuxControls(initialVolume int, initialLoopMode backend.LoopMode) *AuxControls {
|
||||
a := &AuxControls{
|
||||
VolumeControl: NewVolumeControl(initialVolume),
|
||||
loop: NewIconButton(myTheme.RepeatIcon, nil),
|
||||
@@ -33,6 +33,7 @@ func NewAuxControls(initialVolume int) *AuxControls {
|
||||
}
|
||||
a.loop.IconSize = IconButtonSizeSmaller
|
||||
a.loop.SetToolTip(lang.L("Repeat"))
|
||||
a.SetLoopMode(initialLoopMode)
|
||||
a.showQueue.IconSize = IconButtonSizeSmaller
|
||||
a.showQueue.SetToolTip(lang.L("Show play queue"))
|
||||
a.container = container.NewHBox(
|
||||
|
||||
@@ -120,10 +120,7 @@ func (i *IconButton) iconSize() fyne.Size {
|
||||
}
|
||||
}
|
||||
|
||||
func (i *IconButton) Refresh() {
|
||||
if i.img == nil {
|
||||
return
|
||||
}
|
||||
func (i *IconButton) updateColor() {
|
||||
if i.Highlighted || i.focused {
|
||||
i.themed.ColorName = theme.ColorNamePrimary
|
||||
} else if i.hovered {
|
||||
@@ -131,6 +128,13 @@ func (i *IconButton) Refresh() {
|
||||
} else {
|
||||
i.themed.ColorName = myTheme.ColorNameIconButton
|
||||
}
|
||||
}
|
||||
|
||||
func (i *IconButton) Refresh() {
|
||||
if i.img == nil {
|
||||
return
|
||||
}
|
||||
i.updateColor()
|
||||
i.img.SetMinSize(i.iconSize())
|
||||
i.img.Refresh()
|
||||
}
|
||||
@@ -141,6 +145,7 @@ func (i *IconButton) CreateRenderer() fyne.WidgetRenderer {
|
||||
i.img = canvas.NewImageFromResource(i.themed)
|
||||
i.img.FillMode = canvas.ImageFillContain
|
||||
i.img.SetMinSize(i.iconSize())
|
||||
i.updateColor()
|
||||
}
|
||||
return widget.NewSimpleRenderer(container.NewCenter(i.img))
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user