Skip to content

Commit

Permalink
remove verbose debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
sproctor committed Aug 12, 2024
1 parent 4af7e84 commit cf7d08a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,6 @@ fun BasicDataTable(
} else {
val y = offset - state.offset
offset += row.height
println("Row height: ${row.height}")
if (y > -row.height && y < state.viewportHeight) {
row.position(y + headerOffset)
row.place(this)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ class DataTableMeasuredRow(
private val placeableOffsets: IntArray = IntArray(placeables.size * 2)

override fun position(offset: Int) {
println("Positioning at $offset")
backgroundOffset = offset
var x = 0
placeables.forEachIndexed { index, placeable ->
Expand Down

0 comments on commit cf7d08a

Please sign in to comment.