| 279 | } |
| 280 | |
| 281 | void DockWidget::onTrackerTime(double time) { |
| 282 | if (plot_widget_ != nullptr) { |
| 283 | plot_widget_->setTrackerPosition(time); |
| 284 | } |
| 285 | if (object_widget_ != nullptr) { |
| 286 | object_widget_->onTrackerTime(time); |
| 287 | } |
| 288 | } |
| 289 | |
| 290 | void DockWidget::onStylesheetChanged(QString theme) { |
| 291 | if (toolbar_ != nullptr) { |
no test coverage detected