From baee514d169616b53ef6c9c58fcc6c680c75038f Mon Sep 17 00:00:00 2001 From: Rajdeep Kwatra Date: Wed, 10 Jul 2024 16:37:28 +1000 Subject: [PATCH] Fixed an issue where cells would start overlapping with the one below (#324) --- Proton/Sources/Swift/Table/TableContentView.swift | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Proton/Sources/Swift/Table/TableContentView.swift b/Proton/Sources/Swift/Table/TableContentView.swift index b51f5dc3..e3ccb7ee 100644 --- a/Proton/Sources/Swift/Table/TableContentView.swift +++ b/Proton/Sources/Swift/Table/TableContentView.swift @@ -545,8 +545,7 @@ extension TableContentView: TableCellDelegate { } func cell(_ cell: TableCell, didChangeBounds bounds: CGRect, oldBounds: CGRect) { - guard let row = cell.rowSpan.first, - table.maxContentHeightCellForRow(at: row)?.frame.height == cell.frame.height else { + guard let row = cell.rowSpan.first else { return }