| 171 | } |
| 172 | |
| 173 | void DatapickerCurveWidget::errorBarFillingColorChanged(const QColor& color) { |
| 174 | CONDITIONAL_LOCK_RETURN; |
| 175 | |
| 176 | QBrush brush; |
| 177 | for (auto* curve : m_curveList) { |
| 178 | brush = curve->pointErrorBarBrush(); |
| 179 | brush.setColor(color); |
| 180 | curve->setPointErrorBarBrush(brush); |
| 181 | } |
| 182 | GuiTools::updateBrushStyles(ui.cbErrorBarFillingStyle, color); |
| 183 | } |
| 184 | |
| 185 | void DatapickerCurveWidget::visibilityChanged(bool state) { |
| 186 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected