| 557 | } |
| 558 | |
| 559 | void BaseGrid::ScrollTo(int y) { |
| 560 | int nextY = mid(0, y, GetRows() - 1); |
| 561 | if (yPos != nextY) { |
| 562 | context->ass->Properties.scroll_position = yPos = nextY; |
| 563 | scrollBar->SetThumbPosition(yPos); |
| 564 | Refresh(false); |
| 565 | } |
| 566 | } |
| 567 | |
| 568 | void BaseGrid::AdjustScrollbar() { |
| 569 | wxSize clientSize = GetClientSize(); |