| 2202 | } |
| 2203 | |
| 2204 | void MainWindow::broadcastReferenceLine() { |
| 2205 | const std::optional<double> ref_sec = referenceDisplaySeconds(); |
| 2206 | forEachPlot([ref_sec](PlotWidget* plot) { plot->setReferenceLine(ref_sec); }); |
| 2207 | if (source_timeline_controller_ != nullptr) { |
| 2208 | source_timeline_controller_->setReferenceLine(ref_sec); |
| 2209 | } |
| 2210 | } |
| 2211 | |
| 2212 | void MainWindow::onUseTimeOffsetToggled(bool checked) { |
| 2213 | auto& sm = session_->sessionManager(); |
nothing calls this directly
no test coverage detected