fix hiding of popups on escape

This commit is contained in:
Drew Weymouth
2023-03-03 20:51:04 -08:00
parent 37928881c0
commit a8ea12feaf
13 changed files with 59 additions and 55 deletions
+3 -3
View File
@@ -18,14 +18,14 @@ import (
type PlaylistsPage struct {
widget.BaseWidget
contr controller.Controller
contr *controller.Controller
sm *backend.ServerManager
titleDisp *widget.RichText
container *fyne.Container
list *PlaylistList
}
func NewPlaylistsPage(contr controller.Controller, sm *backend.ServerManager) *PlaylistsPage {
func NewPlaylistsPage(contr *controller.Controller, sm *backend.ServerManager) *PlaylistsPage {
a := &PlaylistsPage{
sm: sm,
contr: contr,
@@ -67,7 +67,7 @@ func (a *PlaylistsPage) Save() SavedPage {
}
type savedPlaylistsPage struct {
contr controller.Controller
contr *controller.Controller
sm *backend.ServerManager
}