| 158 | } |
| 159 | |
| 160 | void PageView::scrollToItem(ssize_t itemIndex) |
| 161 | { |
| 162 | if (_innerContainerDoLayoutDirty) |
| 163 | { |
| 164 | this->forceDoLayout(); |
| 165 | } |
| 166 | ListView::scrollToItem(itemIndex, Vec2::ANCHOR_MIDDLE, Vec2::ANCHOR_MIDDLE); |
| 167 | } |
| 168 | |
| 169 | void PageView::scrollToItem(ssize_t itemIndex, float time) |
| 170 | { |
nothing calls this directly
no test coverage detected