Revert "MediaMini: hide when no media is playing"

This reverts commit 8dad25f79c.
This commit is contained in:
Ly-sec
2025-09-25 13:10:31 +02:00
parent 8dad25f79c
commit 6f2d7516f0
-4
View File
@@ -41,10 +41,6 @@ Item {
// Fixed width - no expansion
readonly property real widgetWidth: Math.max(1, screen.width * 0.06)
// Visibility: hide when there's no active playback
readonly property bool hasTrack: getTitle() !== ""
visible: MediaService.isPlaying && hasTrack
function getTitle() {
return MediaService.trackTitle + (MediaService.trackArtist !== "" ? ` - ${MediaService.trackArtist}` : "")
}