effects/private: Fix ExpoLayout reflowing in Desktop Grid while dragging
This fixes makes ExpoLayout independent of its position on a screen, which in turn stops it from randomly reflowing while dragging a virtual desktop across desktop grid. It also removes an unwanted animation at the end of activation of desktop grid: desktops move in place and then windows proceed to adjust themselves resulting in a double animation. FIXED-IN: 5.25.5 5.26
This commit is contained in:
parent
97939ceae8
commit
aaa5e6fee3
1 changed files with 2 additions and 2 deletions
|
@ -178,8 +178,8 @@ Item {
|
|||
id: cell
|
||||
layout: windowHeap.layout
|
||||
enabled: !thumb.hidden
|
||||
naturalX: thumb.client.x - targetScreen.geometry.x - windowHeap.layout.Kirigami.ScenePosition.x
|
||||
naturalY: thumb.client.y - targetScreen.geometry.y - windowHeap.layout.Kirigami.ScenePosition.y
|
||||
naturalX: thumb.client.x
|
||||
naturalY: thumb.client.y
|
||||
naturalWidth: thumb.client.width
|
||||
naturalHeight: thumb.client.height
|
||||
persistentKey: thumb.client.internalId
|
||||
|
|
Loading…
Reference in a new issue