From 6f2d7516f06f9cb84ca9ff949a45f828f20bab34 Mon Sep 17 00:00:00 2001 From: Ly-sec Date: Thu, 25 Sep 2025 13:10:31 +0200 Subject: [PATCH] Revert "MediaMini: hide when no media is playing" This reverts commit 8dad25f79cf93db5258f4f4ab09b95446f9fcd17. --- Modules/Bar/Widgets/MediaMini.qml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Modules/Bar/Widgets/MediaMini.qml b/Modules/Bar/Widgets/MediaMini.qml index 722d6198..ec64b654 100644 --- a/Modules/Bar/Widgets/MediaMini.qml +++ b/Modules/Bar/Widgets/MediaMini.qml @@ -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}` : "") }