| 732 | } |
| 733 | |
| 734 | void PlotWidget::zoomOut(bool emit_signal) { |
| 735 | if (curveList().empty()) { |
| 736 | setZoomRectangle(QRectF(0, 1, 1, -1), false); |
| 737 | return; |
| 738 | } |
| 739 | |
| 740 | updateMaximumZoomArea(); |
| 741 | setZoomRectangle(maxZoomRect(), emit_signal); |
| 742 | replot(); |
| 743 | } |
| 744 | |
| 745 | void PlotWidget::onZoomOutHorizontalTriggered(bool emit_signal) { |
| 746 | updateMaximumZoomArea(); |
no test coverage detected