| 435 | } |
| 436 | |
| 437 | void TableView::_setIndexForCell(ssize_t index, TableViewCell* cell) |
| 438 | { |
| 439 | cell->setAnchorPoint(Vec2(0.0f, 0.0f)); |
| 440 | cell->setPosition(this->_offsetFromIndex(index)); |
| 441 | cell->setIdx(index); |
| 442 | } |
| 443 | |
| 444 | void TableView::_updateCellPositions() |
| 445 | { |
no test coverage detected