| 257 | void CursorController::readoutsSetVisible(bool visible) { hoverReadouts->setVisible(visible && (xEn || yEn)); } |
| 258 | |
| 259 | void CursorController::cursorsSetVisible(bool visible) |
| 260 | { |
| 261 | plotCursors->setXVisible(visible && xEn); |
| 262 | plotCursors->setYVisible(visible && yEn); |
| 263 | } |
| 264 | |
| 265 | PlotCursors *CursorController::getPlotCursors() { return plotCursors; } |
| 266 |
nothing calls this directly
no test coverage detected