fix: don't exclude panels from group based on size
Most panels do not change size either way, and doing this removes the close sink effect
This commit is contained in:
parent
ec4a15c1d1
commit
ff5c46a429
1 changed files with 1 additions and 1 deletions
|
|
@ -289,7 +289,7 @@ StyledWindow {
|
||||||
required property Item panel
|
required property Item panel
|
||||||
property real deformAmount: 0.15
|
property real deformAmount: 0.15
|
||||||
|
|
||||||
group: panel.width > 0 && panel.height > 0 ? blobGroup : null
|
group: blobGroup
|
||||||
x: panel.x + bar.implicitWidth
|
x: panel.x + bar.implicitWidth
|
||||||
y: panel.y + root.borderThickness
|
y: panel.y + root.borderThickness
|
||||||
implicitWidth: panel.width
|
implicitWidth: panel.width
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue