Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
VahidN committed Feb 2, 2018
2 parents 811a468 + b174d57 commit b32a0a8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1362,7 +1362,7 @@ internal bool RowSpanAbove(int currRow, int currCol)
{
int col = currCol - 1;
aboveCell = aboveRow.GetCells()[col];
while ((aboveCell == null) && (row > 0))
while ((aboveCell == null) && (col > 0))
aboveCell = aboveRow.GetCells()[--col];
return aboveCell != null && aboveCell.Rowspan > distance;
}
Expand Down

0 comments on commit b32a0a8

Please sign in to comment.