Skip to content

Commit

Permalink
Fixed an issue where cells would start overlapping with the one below (
Browse files Browse the repository at this point in the history
  • Loading branch information
rajdeep authored Jul 10, 2024
1 parent 1698682 commit baee514
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Proton/Sources/Swift/Table/TableContentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit baee514

Please sign in to comment.