fix: fix window panel transition

This commit is contained in:
Kiana Sheibani 2026-01-25 04:41:22 -05:00
parent dba7ff6c97
commit 2f8b877c8e
Signed by: toki
GPG key ID: 6CB106C25E86A9F7

View file

@ -73,6 +73,13 @@ Item {
property: "scale" property: "scale"
to: 1 to: 1
} }
// Fixes really weird transition bug
NumberAnimation {
targets: header
property: "height"
to: Config.font.size.normal
duration: 20
}
} }
// Reveal on window title change // Reveal on window title change
@ -111,6 +118,7 @@ Item {
anchors.right: infobox.right anchors.right: infobox.right
anchors.top: infobox.top anchors.top: infobox.top
anchors.margins: 12 anchors.margins: 12
anchors.topMargin: 11
} }
} }