Commit 0fbabb1a authored by Miguel Angel Reina Ortega's avatar Miguel Angel Reina Ortega
Browse files

Fix for merged rows

parent 852ecc72
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -402,7 +402,7 @@ def parseGridTableWithSpans(gridTable:str) -> tuple[GridTableRowList, GridTableR
						if len(cellsContent) <= numberOfColumns: # Colspan: Positions of | with respect to + need to be determined
							columnCellIndex = 0

							maxRowsTracker = max(rowsTracker)
							maxRowsTracker = rowsTracker.max()
							# Go through all cells in a columnt
							for columnIndex, content in enumerate(cellsContent):
								rowIndex = rowsTracker[columnCellIndex]