| 183 | } |
| 184 | |
| 185 | void DatapickerCurveWidget::visibilityChanged(bool state) { |
| 186 | CONDITIONAL_LOCK_RETURN; |
| 187 | |
| 188 | for (auto* curve : m_curveList) |
| 189 | curve->setPointVisibility(state); |
| 190 | } |
| 191 | |
| 192 | void DatapickerCurveWidget::updateSymbolWidgets() { |
| 193 | auto list = m_curve->children<DatapickerPoint>(AbstractAspect::ChildIndexFlag::IncludeHidden); |
nothing calls this directly
no test coverage detected