| 1514 | } |
| 1515 | |
| 1516 | void View::auto_set_max_scale() |
| 1517 | { |
| 1518 | const double limitTime = _session->cur_sampletime(); |
| 1519 | const int width = get_view_width(); |
| 1520 | |
| 1521 | if (width > 0) |
| 1522 | { |
| 1523 | _maxscale = limitTime / (width * MaxViewRate); |
| 1524 | set_scale(_maxscale); |
| 1525 | } |
| 1526 | } |
| 1527 | |
| 1528 | int View::get_body_width() |
| 1529 | { |
no test coverage detected