From 4fa08f97484b5153e8180f2051052c374c635e72 Mon Sep 17 00:00:00 2001 From: Damocles Date: Mon, 13 Apr 2026 00:56:26 +0200 Subject: [PATCH] mpris panel: smooth height changes to prevent wiggle --- modules/Mpris.qml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/Mpris.qml b/modules/Mpris.qml index f6e26ac..474efac 100644 --- a/modules/Mpris.qml +++ b/modules/Mpris.qml @@ -118,6 +118,12 @@ M.BarSection { implicitWidth: panelContent.width implicitHeight: panelContent.height + Behavior on implicitHeight { + NumberAnimation { + duration: 100 + easing.type: Easing.OutCubic + } + } Connections { target: root