Solve issue with miniplayer not hiding on startup

This commit is contained in:
Bart De Vries 2021-04-11 16:43:03 +02:00
parent 3aa4b836d2
commit e722ec29ee
1 changed files with 2 additions and 2 deletions

View File

@ -115,8 +115,8 @@ Kirigami.ApplicationWindow {
*/
footer: Loader {
active: (audio.entry !== undefined) && !audio.playerOpen
visible: (audio.entry !== undefined) && !audio.playerOpen
active: (audio.entry != undefined) && !audio.playerOpen
visible: (audio.entry != undefined) && !audio.playerOpen
sourceComponent: MinimizedPlayerControls { }
}