Skip to content

Commit

Permalink
++
Browse files Browse the repository at this point in the history
  • Loading branch information
goderbauer committed Aug 13, 2021
1 parent c7d2c91 commit dc6db33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions table/lib/src/table.dart
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ class _RenderRawTableViewport extends RenderBox {
if (endOfColumn >= horizontalOffset.pixels + size.width - startOfStickyColumn && _lastVisibleColumn == null) {
_lastVisibleColumn = column;
}
startOfColumn = start;
startOfColumn = endOfColumn;
} else {
startOfStickyColumn = start + band.extent;
}
Expand Down Expand Up @@ -552,7 +552,7 @@ class _RenderRawTableViewport extends RenderBox {
if (endOfRow >= verticalOffset.pixels + size.height - startOfStickyRow && _lastVisibleRow == null) {
_lastVisibleRow = row;
}
startOfRow = start;
startOfRow = endOfRow;
} else {
startOfStickyRow = start + band.extent;
}
Expand Down

0 comments on commit dc6db33

Please sign in to comment.