From 2f8b877c8e63448325a752aefecc344b189ec5fe Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Sun, 25 Jan 2026 04:41:22 -0500 Subject: [PATCH] fix: fix window panel transition --- modules/bar/popouts/ActiveWindow.qml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/bar/popouts/ActiveWindow.qml b/modules/bar/popouts/ActiveWindow.qml index bb1e625..673e52f 100644 --- a/modules/bar/popouts/ActiveWindow.qml +++ b/modules/bar/popouts/ActiveWindow.qml @@ -73,6 +73,13 @@ Item { property: "scale" to: 1 } + // Fixes really weird transition bug + NumberAnimation { + targets: header + property: "height" + to: Config.font.size.normal + duration: 20 + } } // Reveal on window title change @@ -111,6 +118,7 @@ Item { anchors.right: infobox.right anchors.top: infobox.top anchors.margins: 12 + anchors.topMargin: 11 } }