| 490 | } |
| 491 | |
| 492 | void RemoteViewWidget::fitToView() |
| 493 | { |
| 494 | const auto scale = |
| 495 | std::min<double>(1.0, |
| 496 | std::min(( double )contentWidth() / ( double )m_frame.sceneRect().width(), |
| 497 | ( double )contentHeight() / ( double )m_frame.sceneRect().height())); |
| 498 | setZoom(scale); |
| 499 | centerView(); |
| 500 | } |
| 501 | |
| 502 | void RemoteViewWidget::centerView() |
| 503 | { |