| 5080 | } |
| 5081 | |
| 5082 | void BufferViewer::ScrollToRow(RDTableView *view, int row) |
| 5083 | { |
| 5084 | int hs = view->horizontalScrollBar()->value(); |
| 5085 | |
| 5086 | view->scrollTo(view->model()->index(row, 0), QAbstractItemView::PositionAtTop); |
| 5087 | view->clearSelection(); |
| 5088 | view->selectRow(row); |
| 5089 | |
| 5090 | view->horizontalScrollBar()->setValue(hs); |
| 5091 | } |
| 5092 | |
| 5093 | void BufferViewer::ScrollToColumn(RDTableView *view, int column) |
| 5094 | { |
no test coverage detected