| 1006 | |
| 1007 | |
| 1008 | void UBBoardController::zoomIn(QPointF scenePoint) |
| 1009 | { |
| 1010 | if (mControlView->transform().m11() > UB_MAX_ZOOM) |
| 1011 | { |
| 1012 | qApp->beep(); |
| 1013 | return; |
| 1014 | } |
| 1015 | zoom(mZoomFactor, scenePoint); |
| 1016 | } |
| 1017 | |
| 1018 | |
| 1019 | void UBBoardController::zoomOut(QPointF scenePoint) |
no test coverage detected