| 92 | } |
| 93 | |
| 94 | void PlotViewWidget::modelNrStreamsChanged() |
| 95 | { |
| 96 | this->showStreamList.clear(); |
| 97 | if (this->model) |
| 98 | { |
| 99 | for (unsigned int i = 0; i < model->getNrStreams(); i++) |
| 100 | this->showStreamList.append(i); |
| 101 | } |
| 102 | DEBUG_PLOT("PlotViewWidget::updateStreamInfo showStreamList " << this->showStreamList); |
| 103 | } |
| 104 | |
| 105 | void PlotViewWidget::zoomToFitInternal() |
| 106 | { |
no test coverage detected