Avoiding access to nil pointer.

pull/29/head
Oliver 6 years ago
parent fdab2627c3
commit cc7bb29944

@ -539,6 +539,9 @@ ColumnLoop:
// Get the cell.
cell := getCell(row, column)
if cell == nil {
continue
}
// Determine colors.
bgColor := t.backgroundColor

Loading…
Cancel
Save