(window: WaylandWindow)
| 3962 | } |
| 3963 | |
| 3964 | const viewportRect = this.tileViewportRect(); |
| 3965 | this.lastAppliedTileViewportRect = snapshotManagedRect(viewportRect); |
| 3966 | const tileHeight = read(viewportRect.height); |
| 3967 | let nextX = read(viewportRect.x) - this.physicalAlignedScrollOffset(); |
| 3968 | const appliedRects: Record<string, ManagedWindowRect> = {}; |
| 3969 | this.lastDraggingSlotRect = null; |
| 3970 | |
| 3971 | tileable.forEach((window, index) => { |
| 3972 | const tileWidth = this.tileWidthForWindow(window, viewportRect); |
no test coverage detected