fix popout jitter due to height changes

This commit is contained in:
2026-08-18 00:47:16 +02:00
parent 968055a24e
commit 8ec454306f
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -96,10 +96,10 @@ Item {
readonly property bool shouldBeActive: root.popouts.currentName === name
active: false
// anchors.horizontalCenter: parent.horizontalCenter
// anchors.top: parent.top
// anchors.topMargin: 5
anchors.centerIn: parent
anchors.centerIn: opacity === 1 ? undefined : parent
anchors.horizontalCenter: parent.horizontalCenter
anchors.top: opacity === 1 ? parent.top : undefined
anchors.topMargin: 5
opacity: 0
scale: 0.8
+1 -1
View File
@@ -54,7 +54,7 @@ Item {
Comp {
id: content
anchors.centerIn: parent
anchors.fill: parent
shouldBeActive: root.hasCurrent
sourceComponent: Content {