From 8e3e60a0b1810500618558be491e2b45814d95de Mon Sep 17 00:00:00 2001 From: Kainoa Kanter Date: Thu, 2 Oct 2025 14:46:41 -0700 Subject: [PATCH] fix: never scroll on pause --- Modules/Bar/Widgets/MediaMini.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Bar/Widgets/MediaMini.qml b/Modules/Bar/Widgets/MediaMini.qml index 5fe8d42c..75fdfed9 100644 --- a/Modules/Bar/Widgets/MediaMini.qml +++ b/Modules/Bar/Widgets/MediaMini.qml @@ -208,7 +208,7 @@ Item { property bool isResetting: false property real textWidth: fullTitleMetrics.contentWidth property real containerWidth: 0 - property bool needsScrolling: textWidth > containerWidth + property bool needsScrolling: textWidth > containerWidth && MediaService.isPlaying // Timer for "always" mode with delay Timer {